2024-02-23T00:16:52.428 INFO:root:teuthology version: 0.0.1.dev260+gb1dac55 2024-02-23T00:16:52.428 DEBUG:teuthology.run:Teuthology command: teuthology --name yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi --owner scheduled_yuriw@teuthology --verbose --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --archive /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416 -- /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/orig.config.yaml 2024-02-23T00:16:52.467 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-23T00:16:52.552 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416 branch: pacific-release description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7571416' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '18.04' 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: eb66ed921e744301e6863be6353618d63967ea59 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: eb66ed921e744301e6863be6353618d63967ea59 workunit: branch: wip-ksirivad-pacific-release-whitelist sha1: 4f758cd8e8854d1f126da86e254076852bf059a9 owner: scheduled_yuriw@teuthology priority: 61 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 264 sha1: eb66ed921e744301e6863be6353618d63967ea59 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-ksirivad-pacific-release-whitelist suite_path: /home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa suite_relpath: qa suite_repo: https://github.com/kamoltat/ceph.git suite_sha1: 4f758cd8e8854d1f126da86e254076852bf059a9 targets: smithi046.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= smithi142.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph 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 --cluster-id foo --pseudo-path /foouser --user-id foouser - 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}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/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 /foouser - 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: b1dac5519c57c269ea98a22fb7729016a1d0e4d2 timestamp: 2024-02-22_21:39:39 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-02-23T00:16:52.552 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa; will attempt to use it 2024-02-23T00:16:52.553 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa/tasks 2024-02-23T00:16:52.553 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-23T00:16:52.555 INFO:teuthology.task.internal:Checking packages... 2024-02-23T00:16:52.579 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'eb66ed921e744301e6863be6353618d63967ea59' 2024-02-23T00:16:52.579 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-23T00:16:52.579 INFO:teuthology.packaging:ref: None 2024-02-23T00:16:52.579 INFO:teuthology.packaging:tag: None 2024-02-23T00:16:52.579 INFO:teuthology.packaging:branch: pacific-release 2024-02-23T00:16:52.579 INFO:teuthology.packaging:sha1: eb66ed921e744301e6863be6353618d63967ea59 2024-02-23T00:16:52.580 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F18.04%2Fx86_64&ref=pacific-release 2024-02-23T00:16:52.832 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-550-geb66ed92-1bionic 2024-02-23T00:16:52.833 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-23T00:16:52.842 INFO:teuthology.task.internal:no buildpackages task found 2024-02-23T00:16:52.842 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-23T00:16:52.864 INFO:teuthology.task.internal:Saving configuration 2024-02-23T00:16:52.877 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-23T00:16:52.886 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-23T00:16:52.921 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi046.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-23 00:11:12.903550', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-02-23T00:16:52.954 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-23 00:11:12.901892', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-02-23T00:16:52.954 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-23T00:16:52.965 INFO:teuthology.task.internal:roles: ubuntu@smithi046.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-23T00:16:52.966 INFO:teuthology.task.internal:roles: ubuntu@smithi142.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-23T00:16:52.966 INFO:teuthology.run_tasks:Running task console_log... 2024-02-23T00:16:53.060 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f3ba73220d0>, signals=[15]) 2024-02-23T00:16:53.061 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-23T00:16:53.076 INFO:teuthology.task.internal:Opening connections... 2024-02-23T00:16:53.077 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:16:53.080 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:16:53.169 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi142.front.sepia.ceph.com 2024-02-23T00:16:53.170 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:16:53.259 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-23T00:16:53.268 DEBUG:teuthology.orchestra.run.smithi046:> uname -m 2024-02-23T00:16:53.284 INFO:teuthology.orchestra.run.smithi046.stdout:x86_64 2024-02-23T00:16:53.284 DEBUG:teuthology.orchestra.run.smithi046:> cat /etc/os-release 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:NAME="Ubuntu" 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:ID=ubuntu 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:ID_LIKE=debian 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:VERSION_ID="18.04" 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-23T00:16:53.338 INFO:teuthology.orchestra.run.smithi046.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-23T00:16:53.339 INFO:teuthology.orchestra.run.smithi046.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-23T00:16:53.339 INFO:teuthology.orchestra.run.smithi046.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-23T00:16:53.339 INFO:teuthology.orchestra.run.smithi046.stdout:VERSION_CODENAME=bionic 2024-02-23T00:16:53.339 INFO:teuthology.orchestra.run.smithi046.stdout:UBUNTU_CODENAME=bionic 2024-02-23T00:16:53.339 INFO:teuthology.lock.ops:Updating smithi046.front.sepia.ceph.com on lock server 2024-02-23T00:16:53.371 DEBUG:teuthology.orchestra.run.smithi142:> uname -m 2024-02-23T00:16:53.381 INFO:teuthology.orchestra.run.smithi142.stdout:x86_64 2024-02-23T00:16:53.382 DEBUG:teuthology.orchestra.run.smithi142:> cat /etc/os-release 2024-02-23T00:16:53.434 INFO:teuthology.orchestra.run.smithi142.stdout:NAME="Ubuntu" 2024-02-23T00:16:53.434 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:ID=ubuntu 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:ID_LIKE=debian 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION_ID="18.04" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:VERSION_CODENAME=bionic 2024-02-23T00:16:53.435 INFO:teuthology.orchestra.run.smithi142.stdout:UBUNTU_CODENAME=bionic 2024-02-23T00:16:53.436 INFO:teuthology.lock.ops:Updating smithi142.front.sepia.ceph.com on lock server 2024-02-23T00:16:53.462 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-23T00:16:53.473 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-23T00:16:53.544 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-23T00:16:53.544 DEBUG:teuthology.orchestra.run.smithi046:> test '!' -e /home/ubuntu/cephtest 2024-02-23T00:16:53.546 DEBUG:teuthology.orchestra.run.smithi142:> test '!' -e /home/ubuntu/cephtest 2024-02-23T00:16:53.552 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-23T00:16:53.563 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-23T00:16:53.563 DEBUG:teuthology.orchestra.run.smithi046:> test -z $(ls -A /var/lib/ceph) 2024-02-23T00:16:53.594 DEBUG:teuthology.orchestra.run.smithi142:> test -z $(ls -A /var/lib/ceph) 2024-02-23T00:16:53.610 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-23T00:16:53.695 INFO:teuthology.run_tasks:Running task kernel... 2024-02-23T00:16:53.715 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-23T00:16:53.715 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-02-23T00:16:53.715 DEBUG:teuthology.orchestra.run.smithi046:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-23T00:16:53.716 DEBUG:teuthology.orchestra.run.smithi142:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-23T00:16:53.721 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T00:16:53.721 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T00:16:53.722 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-02-23T00:16:53.722 DEBUG:teuthology.orchestra.run.smithi046:> uname -r 2024-02-23T00:16:53.770 INFO:teuthology.orchestra.run.smithi046.stdout:4.15.0-200-generic 2024-02-23T00:16:53.770 INFO:teuthology.task.kernel:Running kernel on smithi046: 4.15.0-200-generic 2024-02-23T00:16:53.770 DEBUG:teuthology.orchestra.run.smithi046:> sudo apt-get clean 2024-02-23T00:16:53.771 INFO:teuthology.orchestra.run.smithi142.stdout:4.15.0-200-generic 2024-02-23T00:16:53.771 INFO:teuthology.task.kernel:Running kernel on smithi142: 4.15.0-200-generic 2024-02-23T00:16:53.771 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get clean 2024-02-23T00:16:53.861 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get update 2024-02-23T00:16:53.865 DEBUG:teuthology.orchestra.run.smithi046:> sudo apt-get update 2024-02-23T00:16:54.052 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-23T00:16:54.056 INFO:teuthology.orchestra.run.smithi142.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-02-23T00:16:54.134 INFO:teuthology.orchestra.run.smithi142.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-02-23T00:16:54.160 INFO:teuthology.orchestra.run.smithi142.stdout:Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-02-23T00:16:54.164 INFO:teuthology.orchestra.run.smithi046.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-23T00:16:54.164 INFO:teuthology.orchestra.run.smithi046.stdout:Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-02-23T00:16:54.228 INFO:teuthology.orchestra.run.smithi046.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-02-23T00:16:54.408 INFO:teuthology.orchestra.run.smithi142.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-02-23T00:16:54.549 INFO:teuthology.orchestra.run.smithi046.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-02-23T00:16:54.565 INFO:teuthology.orchestra.run.smithi142.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-02-23T00:16:54.595 INFO:teuthology.orchestra.run.smithi142.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-02-23T00:16:54.605 INFO:teuthology.orchestra.run.smithi142.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-02-23T00:16:54.619 INFO:teuthology.orchestra.run.smithi046.stdout:Get:5 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-02-23T00:16:54.620 INFO:teuthology.orchestra.run.smithi142.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-02-23T00:16:54.620 INFO:teuthology.orchestra.run.smithi142.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-02-23T00:16:54.622 INFO:teuthology.orchestra.run.smithi142.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-02-23T00:16:54.640 INFO:teuthology.orchestra.run.smithi142.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-02-23T00:16:54.658 INFO:teuthology.orchestra.run.smithi142.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-02-23T00:16:54.662 INFO:teuthology.orchestra.run.smithi142.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-02-23T00:16:54.662 INFO:teuthology.orchestra.run.smithi142.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-02-23T00:16:54.663 INFO:teuthology.orchestra.run.smithi142.stdout:Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-02-23T00:16:54.663 INFO:teuthology.orchestra.run.smithi142.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-02-23T00:16:54.663 INFO:teuthology.orchestra.run.smithi142.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-02-23T00:16:54.664 INFO:teuthology.orchestra.run.smithi142.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-02-23T00:16:54.664 INFO:teuthology.orchestra.run.smithi142.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-02-23T00:16:54.734 INFO:teuthology.orchestra.run.smithi142.stdout:Get:21 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-02-23T00:16:54.760 INFO:teuthology.orchestra.run.smithi046.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,665 kB] 2024-02-23T00:16:55.156 INFO:teuthology.orchestra.run.smithi046.stdout:Get:7 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-02-23T00:16:55.186 INFO:teuthology.orchestra.run.smithi046.stdout:Get:8 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-02-23T00:16:55.194 INFO:teuthology.orchestra.run.smithi046.stdout:Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-02-23T00:16:55.194 INFO:teuthology.orchestra.run.smithi046.stdout:Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-02-23T00:16:55.203 INFO:teuthology.orchestra.run.smithi046.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-02-23T00:16:55.247 INFO:teuthology.orchestra.run.smithi046.stdout:Get:12 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-02-23T00:16:55.251 INFO:teuthology.orchestra.run.smithi046.stdout:Get:13 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-02-23T00:16:55.270 INFO:teuthology.orchestra.run.smithi142.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-02-23T00:16:55.275 INFO:teuthology.orchestra.run.smithi046.stdout:Get:14 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-02-23T00:16:55.299 INFO:teuthology.orchestra.run.smithi046.stdout:Get:15 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-02-23T00:16:55.299 INFO:teuthology.orchestra.run.smithi142.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-02-23T00:16:55.311 INFO:teuthology.orchestra.run.smithi142.stdout:Get:24 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-02-23T00:16:55.312 INFO:teuthology.orchestra.run.smithi142.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-02-23T00:16:55.325 INFO:teuthology.orchestra.run.smithi046.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-02-23T00:16:55.330 INFO:teuthology.orchestra.run.smithi046.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-02-23T00:16:55.347 INFO:teuthology.orchestra.run.smithi046.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-02-23T00:16:55.360 INFO:teuthology.orchestra.run.smithi142.stdout:Get:26 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-02-23T00:16:55.365 INFO:teuthology.orchestra.run.smithi142.stdout:Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-02-23T00:16:55.371 INFO:teuthology.orchestra.run.smithi046.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-02-23T00:16:55.384 INFO:teuthology.orchestra.run.smithi046.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-02-23T00:16:55.386 INFO:teuthology.orchestra.run.smithi046.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-02-23T00:16:55.390 INFO:teuthology.orchestra.run.smithi142.stdout:Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-02-23T00:16:55.412 INFO:teuthology.orchestra.run.smithi142.stdout:Get:29 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-02-23T00:16:55.436 INFO:teuthology.orchestra.run.smithi142.stdout:Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-02-23T00:16:55.453 INFO:teuthology.orchestra.run.smithi046.stdout:Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-02-23T00:16:55.489 INFO:teuthology.orchestra.run.smithi046.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-02-23T00:16:55.600 INFO:teuthology.orchestra.run.smithi142.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-02-23T00:16:55.655 INFO:teuthology.orchestra.run.smithi046.stdout:Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-02-23T00:16:55.660 INFO:teuthology.orchestra.run.smithi046.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-02-23T00:16:55.775 INFO:teuthology.orchestra.run.smithi142.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-02-23T00:16:56.172 INFO:teuthology.orchestra.run.smithi046.stdout:Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-02-23T00:16:56.173 INFO:teuthology.orchestra.run.smithi046.stdout:Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-02-23T00:16:56.176 INFO:teuthology.orchestra.run.smithi046.stdout:Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-02-23T00:16:56.177 INFO:teuthology.orchestra.run.smithi046.stdout:Get:29 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-02-23T00:16:56.185 INFO:teuthology.orchestra.run.smithi046.stdout:Get:30 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-02-23T00:16:56.192 INFO:teuthology.orchestra.run.smithi046.stdout:Get:31 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-02-23T00:16:56.194 INFO:teuthology.orchestra.run.smithi046.stdout:Get:32 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-02-23T00:16:57.366 INFO:teuthology.orchestra.run.smithi142.stdout:Fetched 20.1 MB in 3s (6,201 kB/s) 2024-02-23T00:16:57.972 INFO:teuthology.orchestra.run.smithi046.stdout:Fetched 20.1 MB in 4s (5,182 kB/s) 2024-02-23T00:16:59.197 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-02-23T00:16:59.249 DEBUG:teuthology.orchestra.run.smithi142:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-23T00:16:59.339 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-02-23T00:16:59.628 INFO:teuthology.orchestra.run.smithi142.stdout:Building dependency tree... 2024-02-23T00:16:59.628 INFO:teuthology.orchestra.run.smithi142.stdout:Reading state information... 2024-02-23T00:16:59.773 INFO:teuthology.orchestra.run.smithi046.stdout:Reading package lists... 2024-02-23T00:16:59.828 DEBUG:teuthology.orchestra.run.smithi046:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-23T00:16:59.847 INFO:teuthology.orchestra.run.smithi142.stdout:The following additional packages will be installed: 2024-02-23T00:16:59.847 INFO:teuthology.orchestra.run.smithi142.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-23T00:16:59.847 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-02-23T00:16:59.848 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-02-23T00:16:59.850 INFO:teuthology.orchestra.run.smithi142.stdout:Suggested packages: 2024-02-23T00:16:59.850 INFO:teuthology.orchestra.run.smithi142.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-02-23T00:16:59.850 INFO:teuthology.orchestra.run.smithi142.stdout:Recommended packages: 2024-02-23T00:16:59.850 INFO:teuthology.orchestra.run.smithi142.stdout: thermald 2024-02-23T00:16:59.914 INFO:teuthology.orchestra.run.smithi046.stdout:Reading package lists... 2024-02-23T00:16:59.916 INFO:teuthology.orchestra.run.smithi142.stdout:The following NEW packages will be installed: 2024-02-23T00:16:59.916 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-23T00:16:59.916 INFO:teuthology.orchestra.run.smithi142.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-02-23T00:16:59.916 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-extra-4.15.0-213-generic 2024-02-23T00:16:59.918 INFO:teuthology.orchestra.run.smithi142.stdout:The following packages will be upgraded: 2024-02-23T00:16:59.919 INFO:teuthology.orchestra.run.smithi142.stdout: linux-generic linux-headers-generic linux-image-generic 2024-02-23T00:16:59.984 INFO:teuthology.orchestra.run.smithi142.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-02-23T00:16:59.985 INFO:teuthology.orchestra.run.smithi142.stdout:Need to get 67.4 MB of archives. 2024-02-23T00:16:59.985 INFO:teuthology.orchestra.run.smithi142.stdout:After this operation, 351 MB of additional disk space will be used. 2024-02-23T00:16:59.985 INFO:teuthology.orchestra.run.smithi142.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-02-23T00:17:00.221 INFO:teuthology.orchestra.run.smithi046.stdout:Building dependency tree... 2024-02-23T00:17:00.222 INFO:teuthology.orchestra.run.smithi046.stdout:Reading state information... 2024-02-23T00:17:00.303 INFO:teuthology.orchestra.run.smithi142.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-02-23T00:17:00.408 INFO:teuthology.orchestra.run.smithi142.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-02-23T00:17:00.460 INFO:teuthology.orchestra.run.smithi046.stdout:The following additional packages will be installed: 2024-02-23T00:17:00.460 INFO:teuthology.orchestra.run.smithi046.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-23T00:17:00.460 INFO:teuthology.orchestra.run.smithi046.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-02-23T00:17:00.460 INFO:teuthology.orchestra.run.smithi046.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-02-23T00:17:00.463 INFO:teuthology.orchestra.run.smithi046.stdout:Suggested packages: 2024-02-23T00:17:00.463 INFO:teuthology.orchestra.run.smithi046.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-02-23T00:17:00.463 INFO:teuthology.orchestra.run.smithi046.stdout:Recommended packages: 2024-02-23T00:17:00.463 INFO:teuthology.orchestra.run.smithi046.stdout: thermald 2024-02-23T00:17:00.524 INFO:teuthology.orchestra.run.smithi046.stdout:The following NEW packages will be installed: 2024-02-23T00:17:00.524 INFO:teuthology.orchestra.run.smithi046.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-02-23T00:17:00.524 INFO:teuthology.orchestra.run.smithi046.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-02-23T00:17:00.524 INFO:teuthology.orchestra.run.smithi046.stdout: linux-modules-extra-4.15.0-213-generic 2024-02-23T00:17:00.526 INFO:teuthology.orchestra.run.smithi046.stdout:The following packages will be upgraded: 2024-02-23T00:17:00.527 INFO:teuthology.orchestra.run.smithi046.stdout: linux-generic linux-headers-generic linux-image-generic 2024-02-23T00:17:00.590 INFO:teuthology.orchestra.run.smithi046.stdout:3 upgraded, 5 newly installed, 0 to remove and 165 not upgraded. 2024-02-23T00:17:00.590 INFO:teuthology.orchestra.run.smithi046.stdout:Need to get 67.4 MB of archives. 2024-02-23T00:17:00.590 INFO:teuthology.orchestra.run.smithi046.stdout:After this operation, 351 MB of additional disk space will be used. 2024-02-23T00:17:00.591 INFO:teuthology.orchestra.run.smithi046.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-02-23T00:17:00.813 INFO:teuthology.orchestra.run.smithi142.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-02-23T00:17:00.814 INFO:teuthology.orchestra.run.smithi142.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-02-23T00:17:00.814 INFO:teuthology.orchestra.run.smithi142.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-02-23T00:17:01.040 INFO:teuthology.orchestra.run.smithi142.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-02-23T00:17:01.050 INFO:teuthology.orchestra.run.smithi046.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-02-23T00:17:01.055 INFO:teuthology.orchestra.run.smithi142.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-02-23T00:17:01.157 INFO:teuthology.orchestra.run.smithi046.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-02-23T00:17:01.622 INFO:teuthology.orchestra.run.smithi046.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-02-23T00:17:01.622 INFO:teuthology.orchestra.run.smithi046.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-02-23T00:17:01.622 INFO:teuthology.orchestra.run.smithi046.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-02-23T00:17:01.753 INFO:teuthology.orchestra.run.smithi046.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-02-23T00:17:01.766 INFO:teuthology.orchestra.run.smithi142.stdout:Fetched 67.4 MB in 1s (60.3 MB/s) 2024-02-23T00:17:01.767 INFO:teuthology.orchestra.run.smithi046.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-02-23T00:17:01.962 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-02-23T00:17:02.489 INFO:teuthology.orchestra.run.smithi046.stdout:Fetched 67.4 MB in 1s (55.1 MB/s) 2024-02-23T00:17:02.682 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-02-23T00:17:02.912 INFO:teuthology.orchestra.run.smithi142.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-02-23T00:17:02.916 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:02.992 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:03.575 INFO:teuthology.orchestra.run.smithi046.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-02-23T00:17:03.580 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:03.654 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:04.692 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-02-23T00:17:04.705 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:04.813 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:05.336 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-02-23T00:17:05.352 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:05.395 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:05.421 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-02-23T00:17:05.438 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:05.539 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:06.116 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-02-23T00:17:06.133 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:06.200 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:09.609 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:09.732 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:10.066 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:10.077 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:10.169 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:10.177 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:10.495 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:10.513 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-02-23T00:17:10.528 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-02-23T00:17:10.572 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-23T00:17:10.623 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:10.942 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-02-23T00:17:10.957 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-02-23T00:17:11.018 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-23T00:17:15.304 INFO:teuthology.orchestra.run.smithi142.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-02-23T00:17:15.327 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:15.370 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:15.957 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-02-23T00:17:15.982 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-02-23T00:17:16.016 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:17.727 INFO:teuthology.orchestra.run.smithi142.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:17.862 INFO:teuthology.orchestra.run.smithi142.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:18.202 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:18.592 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-02-23T00:17:18.728 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-02-23T00:17:18.816 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:19.088 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:19.340 INFO:teuthology.orchestra.run.smithi142.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:19.341 INFO:teuthology.orchestra.run.smithi142.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:19.341 INFO:teuthology.orchestra.run.smithi142.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:19.341 INFO:teuthology.orchestra.run.smithi142.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:19.468 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:19.977 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-23T00:17:20.103 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-02-23T00:17:20.254 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:20.380 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-02-23T00:17:20.491 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:20.506 INFO:teuthology.orchestra.run.smithi142.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-02-23T00:17:20.624 INFO:teuthology.orchestra.run.smithi142.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:20.839 INFO:teuthology.orchestra.run.smithi142.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-23T00:17:20.839 INFO:teuthology.orchestra.run.smithi142.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:20.981 INFO:teuthology.orchestra.run.smithi046.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:20.981 INFO:teuthology.orchestra.run.smithi046.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:20.981 INFO:teuthology.orchestra.run.smithi046.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:20.981 INFO:teuthology.orchestra.run.smithi046.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:21.135 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:21.687 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-02-23T00:17:21.813 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-02-23T00:17:21.939 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:22.065 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-02-23T00:17:22.191 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-02-23T00:17:22.317 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-02-23T00:17:22.505 INFO:teuthology.orchestra.run.smithi046.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-23T00:17:22.505 INFO:teuthology.orchestra.run.smithi046.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:37.584 INFO:teuthology.orchestra.run.smithi142.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-23T00:17:37.585 INFO:teuthology.orchestra.run.smithi142.stdout:Sourcing file `/etc/default/grub' 2024-02-23T00:17:37.611 INFO:teuthology.orchestra.run.smithi142.stdout:Generating grub configuration file ... 2024-02-23T00:17:38.038 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:38.075 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:38.434 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:38.469 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:38.539 INFO:teuthology.orchestra.run.smithi142.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-23T00:17:38.565 INFO:teuthology.orchestra.run.smithi142.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-23T00:17:39.433 INFO:teuthology.orchestra.run.smithi142.stdout:done 2024-02-23T00:17:39.628 INFO:teuthology.orchestra.run.smithi046.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-23T00:17:39.629 INFO:teuthology.orchestra.run.smithi046.stdout:Sourcing file `/etc/default/grub' 2024-02-23T00:17:39.648 INFO:teuthology.orchestra.run.smithi046.stdout:Generating grub configuration file ... 2024-02-23T00:17:39.909 DEBUG:teuthology.orchestra.run.smithi142:> dpkg -s linux-image-generic 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Package: linux-image-generic 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Status: install ok installed 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Priority: optional 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Section: kernel 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Installed-Size: 18 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Maintainer: Ubuntu Kernel Team 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Architecture: amd64 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Source: linux-meta 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Version: 4.15.0.213.196 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-23T00:17:39.934 INFO:teuthology.orchestra.run.smithi142.stdout:Recommends: thermald 2024-02-23T00:17:39.935 INFO:teuthology.orchestra.run.smithi142.stdout:Description: Generic Linux kernel image 2024-02-23T00:17:39.935 INFO:teuthology.orchestra.run.smithi142.stdout: This package will always depend on the latest generic kernel image 2024-02-23T00:17:39.935 INFO:teuthology.orchestra.run.smithi142.stdout: available. 2024-02-23T00:17:39.935 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-02-23T00:17:39.935 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-23T00:17:39.935 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-23T00:17:39.935 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-23T00:17:39.935 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi142.front.sepia.ceph.com, path=None, version=distro) 2024-02-23T00:17:39.936 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get clean 2024-02-23T00:17:40.034 DEBUG:teuthology.orchestra.run.smithi142:> sudo apt-get update 2024-02-23T00:17:40.091 INFO:teuthology.orchestra.run.smithi046.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:40.121 INFO:teuthology.orchestra.run.smithi046.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:40.160 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-23T00:17:40.169 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-02-23T00:17:40.189 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-02-23T00:17:40.273 INFO:teuthology.orchestra.run.smithi142.stdout:Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-02-23T00:17:40.522 INFO:teuthology.orchestra.run.smithi046.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:40.549 INFO:teuthology.orchestra.run.smithi046.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:40.623 INFO:teuthology.orchestra.run.smithi046.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-23T00:17:40.654 INFO:teuthology.orchestra.run.smithi046.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-23T00:17:41.554 INFO:teuthology.orchestra.run.smithi046.stdout:done 2024-02-23T00:17:42.011 DEBUG:teuthology.orchestra.run.smithi046:> dpkg -s linux-image-generic 2024-02-23T00:17:42.032 INFO:teuthology.orchestra.run.smithi046.stdout:Package: linux-image-generic 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Status: install ok installed 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Priority: optional 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Section: kernel 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Installed-Size: 18 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Maintainer: Ubuntu Kernel Team 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Architecture: amd64 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Source: linux-meta 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Version: 4.15.0.213.196 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Recommends: thermald 2024-02-23T00:17:42.033 INFO:teuthology.orchestra.run.smithi046.stdout:Description: Generic Linux kernel image 2024-02-23T00:17:42.034 INFO:teuthology.orchestra.run.smithi046.stdout: This package will always depend on the latest generic kernel image 2024-02-23T00:17:42.034 INFO:teuthology.orchestra.run.smithi046.stdout: available. 2024-02-23T00:17:42.034 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-02-23T00:17:42.034 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-23T00:17:42.034 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-23T00:17:42.034 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-23T00:17:42.034 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi046.front.sepia.ceph.com, path=None, version=distro) 2024-02-23T00:17:42.034 DEBUG:teuthology.orchestra.run.smithi046:> sudo apt-get clean 2024-02-23T00:17:42.136 DEBUG:teuthology.orchestra.run.smithi046:> sudo apt-get update 2024-02-23T00:17:42.253 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-02-23T00:17:42.268 INFO:teuthology.orchestra.run.smithi046.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-02-23T00:17:42.277 INFO:teuthology.orchestra.run.smithi046.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-02-23T00:17:42.298 INFO:teuthology.orchestra.run.smithi046.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-02-23T00:17:42.303 DEBUG:teuthology.orchestra.run.smithi142:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-23T00:17:42.378 INFO:teuthology.orchestra.run.smithi046.stdout:Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-02-23T00:17:42.380 INFO:teuthology.orchestra.run.smithi142.stdout:Reading package lists... 2024-02-23T00:17:42.672 INFO:teuthology.orchestra.run.smithi142.stdout:Building dependency tree... 2024-02-23T00:17:42.673 INFO:teuthology.orchestra.run.smithi142.stdout:Reading state information... 2024-02-23T00:17:42.881 INFO:teuthology.orchestra.run.smithi142.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-02-23T00:17:42.881 INFO:teuthology.orchestra.run.smithi142.stdout:The following packages were automatically installed and are no longer required: 2024-02-23T00:17:42.881 INFO:teuthology.orchestra.run.smithi142.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-23T00:17:42.881 INFO:teuthology.orchestra.run.smithi142.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-23T00:17:42.881 INFO:teuthology.orchestra.run.smithi142.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-23T00:17:42.882 INFO:teuthology.orchestra.run.smithi142.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-23T00:17:42.937 INFO:teuthology.orchestra.run.smithi142.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-02-23T00:17:42.939 DEBUG:teuthology.orchestra.run.smithi142:> dpkg -s linux-image-generic 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Package: linux-image-generic 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Status: install ok installed 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Priority: optional 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Section: kernel 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Installed-Size: 18 2024-02-23T00:17:43.002 INFO:teuthology.orchestra.run.smithi142.stdout:Maintainer: Ubuntu Kernel Team 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Architecture: amd64 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Source: linux-meta 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Version: 4.15.0.213.196 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Recommends: thermald 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout:Description: Generic Linux kernel image 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout: This package will always depend on the latest generic kernel image 2024-02-23T00:17:43.003 INFO:teuthology.orchestra.run.smithi142.stdout: available. 2024-02-23T00:17:43.004 DEBUG:teuthology.orchestra.run.smithi142:> mktemp 2024-02-23T00:17:43.050 INFO:teuthology.orchestra.run.smithi142.stdout:/tmp/tmp.90pJIkAV94 2024-02-23T00:17:43.051 DEBUG:teuthology.orchestra.run.smithi142:> sudo cp /boot/grub/grub.cfg /tmp/tmp.90pJIkAV94 2024-02-23T00:17:43.106 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 0666 /tmp/tmp.90pJIkAV94 2024-02-23T00:17:43.245 DEBUG:teuthology.orchestra.remote:smithi142:/tmp/tmp.90pJIkAV94 is 10KB 2024-02-23T00:17:43.257 DEBUG:teuthology.orchestra.run.smithi142:> rm -fr /tmp/tmp.90pJIkAV94 2024-02-23T00:17:43.264 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-23T00:17:43.323 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:17:43.324 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-23T00:17:43.324 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-23T00:17:43.403 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-02-23T00:17:43.403 DEBUG:teuthology.orchestra.run.smithi142:> sudo update-grub 2024-02-23T00:17:44.434 INFO:teuthology.orchestra.run.smithi046.stdout:Reading package lists... 2024-02-23T00:17:44.488 DEBUG:teuthology.orchestra.run.smithi046:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-02-23T00:17:44.568 INFO:teuthology.orchestra.run.smithi046.stdout:Reading package lists... 2024-02-23T00:17:44.795 INFO:teuthology.orchestra.run.smithi142.stderr:Sourcing file `/etc/default/grub' 2024-02-23T00:17:44.814 INFO:teuthology.orchestra.run.smithi142.stderr:Generating grub configuration file ... 2024-02-23T00:17:44.844 INFO:teuthology.orchestra.run.smithi046.stdout:Building dependency tree... 2024-02-23T00:17:44.845 INFO:teuthology.orchestra.run.smithi046.stdout:Reading state information... 2024-02-23T00:17:45.066 INFO:teuthology.orchestra.run.smithi046.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-02-23T00:17:45.066 INFO:teuthology.orchestra.run.smithi046.stdout:The following packages were automatically installed and are no longer required: 2024-02-23T00:17:45.066 INFO:teuthology.orchestra.run.smithi046.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-23T00:17:45.066 INFO:teuthology.orchestra.run.smithi046.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-23T00:17:45.067 INFO:teuthology.orchestra.run.smithi046.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-23T00:17:45.067 INFO:teuthology.orchestra.run.smithi046.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-23T00:17:45.090 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:45.101 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:45.124 INFO:teuthology.orchestra.run.smithi046.stdout:0 upgraded, 0 newly installed, 0 to remove and 165 not upgraded. 2024-02-23T00:17:45.126 DEBUG:teuthology.orchestra.run.smithi046:> dpkg -s linux-image-generic 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Package: linux-image-generic 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Status: install ok installed 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Priority: optional 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Section: kernel 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Installed-Size: 18 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Maintainer: Ubuntu Kernel Team 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Architecture: amd64 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Source: linux-meta 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Version: 4.15.0.213.196 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-23T00:17:45.146 INFO:teuthology.orchestra.run.smithi046.stdout:Recommends: thermald 2024-02-23T00:17:45.147 INFO:teuthology.orchestra.run.smithi046.stdout:Description: Generic Linux kernel image 2024-02-23T00:17:45.147 INFO:teuthology.orchestra.run.smithi046.stdout: This package will always depend on the latest generic kernel image 2024-02-23T00:17:45.147 INFO:teuthology.orchestra.run.smithi046.stdout: available. 2024-02-23T00:17:45.147 DEBUG:teuthology.orchestra.run.smithi046:> mktemp 2024-02-23T00:17:45.194 INFO:teuthology.orchestra.run.smithi046.stdout:/tmp/tmp.zWAZ89S6gc 2024-02-23T00:17:45.195 DEBUG:teuthology.orchestra.run.smithi046:> sudo cp /boot/grub/grub.cfg /tmp/tmp.zWAZ89S6gc 2024-02-23T00:17:45.265 DEBUG:teuthology.orchestra.run.smithi046:> sudo chmod 0666 /tmp/tmp.zWAZ89S6gc 2024-02-23T00:17:45.401 DEBUG:teuthology.orchestra.remote:smithi046:/tmp/tmp.zWAZ89S6gc is 10KB 2024-02-23T00:17:45.413 DEBUG:teuthology.orchestra.run.smithi046:> rm -fr /tmp/tmp.zWAZ89S6gc 2024-02-23T00:17:45.416 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:45.421 DEBUG:teuthology.orchestra.run.smithi046:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-23T00:17:45.428 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:45.476 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:17:45.476 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-23T00:17:45.476 DEBUG:teuthology.orchestra.run.smithi046:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-23T00:17:45.505 INFO:teuthology.orchestra.run.smithi142.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-23T00:17:45.518 INFO:teuthology.orchestra.run.smithi142.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-23T00:17:45.546 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-02-23T00:17:45.546 DEBUG:teuthology.orchestra.run.smithi046:> sudo update-grub 2024-02-23T00:17:46.163 INFO:teuthology.orchestra.run.smithi142.stderr:done 2024-02-23T00:17:46.165 DEBUG:teuthology.orchestra.run.smithi142:> sudo shutdown -r now 2024-02-23T00:17:47.009 INFO:teuthology.orchestra.run.smithi046.stderr:Sourcing file `/etc/default/grub' 2024-02-23T00:17:47.017 INFO:teuthology.orchestra.run.smithi046.stderr:Generating grub configuration file ... 2024-02-23T00:17:47.326 INFO:teuthology.orchestra.run.smithi046.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-02-23T00:17:47.340 INFO:teuthology.orchestra.run.smithi046.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-02-23T00:17:47.755 INFO:teuthology.orchestra.run.smithi046.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-02-23T00:17:47.768 INFO:teuthology.orchestra.run.smithi046.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-02-23T00:17:47.845 INFO:teuthology.orchestra.run.smithi046.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-02-23T00:17:47.858 INFO:teuthology.orchestra.run.smithi046.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-02-23T00:17:48.388 INFO:teuthology.orchestra.run.smithi046.stderr:done 2024-02-23T00:17:48.391 DEBUG:teuthology.orchestra.run.smithi046:> sudo shutdown -r now 2024-02-23T00:18:16.194 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-23T00:18:16.195 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:18:16.196 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:18:18.396 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-23T00:18:18.396 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:18:18.397 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:18:34.684 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.142 2024-02-23T00:18:36.732 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.46 2024-02-23T00:18:43.688 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:18:43.690 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:18:45.734 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:18:45.735 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:18:46.780 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.142 2024-02-23T00:18:48.796 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.46 2024-02-23T00:18:58.791 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:18:58.792 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:19:00.799 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:19:00.800 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:19:30.318 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-02-23T00:19:30.625 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:19:30.625 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.15.0-213-generic"... 2024-02-23T00:19:30.626 DEBUG:teuthology.orchestra.run.smithi142:> uname -r 2024-02-23T00:19:30.675 INFO:teuthology.orchestra.run.smithi142.stdout:4.15.0-213-generic 2024-02-23T00:19:30.675 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-02-23T00:19:30.675 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-23T00:19:30.675 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-23T00:19:31.676 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-23T00:19:31.676 DEBUG:teuthology.orchestra.run.smithi142:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-23T00:19:31.708 INFO:teuthology.orchestra.run.smithi142.stdout:ttyS1 2024-02-23T00:19:31.735 DEBUG:teuthology.parallel:result is None 2024-02-23T00:20:00.811 DEBUG:teuthology.orchestra.remote:timed out 2024-02-23T00:20:15.813 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:20:15.815 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:20:15.907 DEBUG:teuthology.orchestra.run.smithi046:> true 2024-02-23T00:20:16.229 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:20:16.229 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.15.0-213-generic"... 2024-02-23T00:20:16.230 DEBUG:teuthology.orchestra.run.smithi046:> uname -r 2024-02-23T00:20:16.275 INFO:teuthology.orchestra.run.smithi046.stdout:4.15.0-213-generic 2024-02-23T00:20:16.276 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-02-23T00:20:16.276 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-23T00:20:16.276 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-23T00:20:17.277 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-23T00:20:17.277 DEBUG:teuthology.orchestra.run.smithi046:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-23T00:20:17.315 INFO:teuthology.orchestra.run.smithi046.stdout:ttyS1 2024-02-23T00:20:17.348 DEBUG:teuthology.parallel:result is None 2024-02-23T00:20:17.349 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-23T00:20:17.368 INFO:teuthology.task.internal:Creating test directory... 2024-02-23T00:20:17.368 DEBUG:teuthology.orchestra.run.smithi046:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-23T00:20:17.391 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-23T00:20:17.397 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-23T00:20:17.403 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-23T00:20:17.409 INFO:teuthology.task.internal:Creating archive directory... 2024-02-23T00:20:17.409 DEBUG:teuthology.orchestra.run.smithi046:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-23T00:20:17.444 DEBUG:teuthology.orchestra.run.smithi142:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-23T00:20:17.465 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-23T00:20:17.472 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-23T00:20:17.472 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:20:17.495 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:20:17.515 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-23T00:20:17.523 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-23T00:20:17.528 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-23T00:20:17.535 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-23T00:20:17.537 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-23T00:20:17.547 INFO:teuthology.task.internal:Configuring sudo... 2024-02-23T00:20:17.547 DEBUG:teuthology.orchestra.run.smithi046:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-23T00:20:17.572 DEBUG:teuthology.orchestra.run.smithi142:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-23T00:20:17.593 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-23T00:20:17.602 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-23T00:20:17.602 DEBUG:teuthology.orchestra.run.smithi046:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-23T00:20:17.627 DEBUG:teuthology.orchestra.run.smithi142:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-23T00:20:17.640 DEBUG:teuthology.orchestra.run.smithi046:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-23T00:20:17.680 DEBUG:teuthology.orchestra.run.smithi046:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-23T00:20:17.728 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:20:17.728 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-23T00:20:17.793 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-23T00:20:17.800 DEBUG:teuthology.orchestra.run.smithi142:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-23T00:20:17.849 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:20:17.849 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-23T00:20:17.910 DEBUG:teuthology.orchestra.run.smithi046:> sudo service rsyslog restart 2024-02-23T00:20:17.912 DEBUG:teuthology.orchestra.run.smithi142:> sudo service rsyslog restart 2024-02-23T00:20:17.992 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-23T00:20:18.001 INFO:teuthology.task.internal:Starting timer... 2024-02-23T00:20:18.001 INFO:teuthology.run_tasks:Running task pcp... 2024-02-23T00:20:18.011 INFO:teuthology.run_tasks:Running task selinux... 2024-02-23T00:20:18.019 DEBUG:teuthology.task.selinux:Excluding smithi046: OS 'ubuntu' does not support SELinux 2024-02-23T00:20:18.020 DEBUG:teuthology.task.selinux:Excluding smithi142: OS 'ubuntu' does not support SELinux 2024-02-23T00:20:18.020 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-23T00:20:18.020 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-23T00:20:18.020 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-23T00:20:18.020 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-23T00:20:18.029 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-02-23T00:20:18.035 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-02-23T00:20:18.195 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-23T00:20:18.210 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-02-23T00:20:18.211 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi046.front.sepia.ceph.com,smithi142.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-23T00:25:41.401 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi046.front.sepia.ceph.com'), Remote(name='ubuntu@smithi142.front.sepia.ceph.com')] 2024-02-23T00:25:41.402 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:25:41.403 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi046.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:25:41.511 DEBUG:teuthology.orchestra.run.smithi046:> true 2024-02-23T00:25:41.629 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi046.front.sepia.ceph.com' 2024-02-23T00:25:41.630 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:25:41.630 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi142.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-23T00:25:41.741 DEBUG:teuthology.orchestra.run.smithi142:> true 2024-02-23T00:25:41.857 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi142.front.sepia.ceph.com' 2024-02-23T00:25:41.858 INFO:teuthology.run_tasks:Running task clock... 2024-02-23T00:25:41.869 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-23T00:25:41.869 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-23T00:25:41.870 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:41.872 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-23T00:25:41.872 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:41.918 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-02-23T00:25:41.918 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Command line: ntpd -gq 2024-02-23T00:25:41.919 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: proto: precision = 0.126 usec (-23) 2024-02-23T00:25:41.919 INFO:teuthology.orchestra.run.smithi046.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-23T00:25:41.920 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-23T00:25:41.920 INFO:teuthology.orchestra.run.smithi046.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-23T00:25:41.921 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: restrict ::: KOD does nothing without LIMITED. 2024-02-23T00:25:41.921 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen and drop on 0 v6wildcard [::]:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen normally on 2 lo 127.0.0.1:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen normally on 3 ens1f0 172.21.15.46:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen normally on 4 lo [::1]:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:15f8%3]:123 2024-02-23T00:25:41.922 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:41 ntpd[14453]: Listening on routing socket on fd #22 for interface updates 2024-02-23T00:25:41.950 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-02-23T00:25:41.951 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Command line: ntpd -gq 2024-02-23T00:25:41.951 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: proto: precision = 0.123 usec (-23) 2024-02-23T00:25:41.952 INFO:teuthology.orchestra.run.smithi142.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-23T00:25:41.952 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-23T00:25:41.952 INFO:teuthology.orchestra.run.smithi142.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-23T00:25:41.953 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: restrict ::: KOD does nothing without LIMITED. 2024-02-23T00:25:41.953 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen and drop on 0 v6wildcard [::]:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen normally on 2 lo 127.0.0.1:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen normally on 3 enp3s0f1 172.21.15.142:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen normally on 4 lo [::1]:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6e0d%5]:123 2024-02-23T00:25:41.954 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:41 ntpd[14492]: Listening on routing socket on fd #22 for interface updates 2024-02-23T00:25:43.951 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:43 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:43.951 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:43 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:43.951 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:43 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:43.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:43 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:44.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:44.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:44.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:44.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:44.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:44.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:44.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:44.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:44 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:45.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:45 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:45.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:45 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:45.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:45 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:45.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:45 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:45.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:45.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:45.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:45.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:45.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:45 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:46.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:46.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:46.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:46 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:47.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:47 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:47.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:47 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:47.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:47 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:47.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:47 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:47.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:47 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:48.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:48.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:48 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:49.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:49 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:49.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:49 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:49.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:49 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:49.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:49 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:49.952 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:49.953 INFO:teuthology.orchestra.run.smithi142.stdout:23 Feb 00:25:49 ntpd[14492]: ntpd: time slew -0.002731 s 2024-02-23T00:25:49.953 INFO:teuthology.orchestra.run.smithi142.stdout:ntpd: time slew -0.002731s 2024-02-23T00:25:49.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-23T00:25:49.953 INFO:teuthology.orchestra.run.smithi142.stderr:23 Feb 00:25:49 ntpd[14492]: can't open /var/log/ntpstats/loopstats.20240223: Permission denied 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout: remote refid st t when poll reach delay offset jitter 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout:============================================================================== 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.004 INFO:teuthology.orchestra.run.smithi142.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: can't open /var/log/ntpstats/rawstats.20240223: Permission denied 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: can't open /var/log/ntpstats/peerstats.20240223: Permission denied 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stdout:23 Feb 00:25:50 ntpd[14453]: ntpd: time slew +0.001444 s 2024-02-23T00:25:50.919 INFO:teuthology.orchestra.run.smithi046.stdout:ntpd: time slew +0.001444s 2024-02-23T00:25:50.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-23T00:25:50.920 INFO:teuthology.orchestra.run.smithi046.stderr:23 Feb 00:25:50 ntpd[14453]: can't open /var/log/ntpstats/loopstats.20240223: Permission denied 2024-02-23T00:25:50.979 INFO:teuthology.orchestra.run.smithi046.stdout: remote refid st t when poll reach delay offset jitter 2024-02-23T00:25:50.980 INFO:teuthology.orchestra.run.smithi046.stdout:============================================================================== 2024-02-23T00:25:50.980 INFO:teuthology.orchestra.run.smithi046.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.980 INFO:teuthology.orchestra.run.smithi046.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.980 INFO:teuthology.orchestra.run.smithi046.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.980 INFO:teuthology.orchestra.run.smithi046.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-23T00:25:50.981 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-23T00:25:50.994 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-23T00:25:50.994 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:25:50.994 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:25:51.030 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-02-23T00:25:51.030 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/vg_nvme/lv_1 2024-02-23T00:25:51.078 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 340 Links: 1 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:24:17.891057043 +0000 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:24:17.747050389 +0000 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:24:17.747050389 +0000 2024-02-23T00:25:51.079 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:25:51.079 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-23T00:25:51.133 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:25:51.133 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:25:51.133 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000231134 s, 2.2 MB/s 2024-02-23T00:25:51.134 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-23T00:25:51.183 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/vg_nvme/lv_2 2024-02-23T00:25:51.234 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-23T00:25:51.234 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:51.234 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 346 Links: 1 2024-02-23T00:25:51.234 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:51.235 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:24:18.171068338 +0000 2024-02-23T00:25:51.235 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:24:18.019062835 +0000 2024-02-23T00:25:51.235 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:24:18.019062835 +0000 2024-02-23T00:25:51.235 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:25:51.235 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-23T00:25:51.289 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:25:51.289 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:25:51.289 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000225651 s, 2.3 MB/s 2024-02-23T00:25:51.290 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-23T00:25:51.340 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/vg_nvme/lv_3 2024-02-23T00:25:51.390 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 352 Links: 1 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:24:18.467079055 +0000 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:24:18.295072828 +0000 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:24:18.295072828 +0000 2024-02-23T00:25:51.391 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:25:51.391 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-23T00:25:51.444 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:25:51.445 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:25:51.445 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.00020963 s, 2.4 MB/s 2024-02-23T00:25:51.446 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-23T00:25:51.499 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/vg_nvme/lv_4 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 358 Links: 1 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:24:18.755089481 +0000 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:24:18.599083835 +0000 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:24:18.599083835 +0000 2024-02-23T00:25:51.550 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:25:51.551 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-23T00:25:51.604 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:25:51.605 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:25:51.605 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000294194 s, 1.7 MB/s 2024-02-23T00:25:51.606 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-23T00:25:51.655 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:51.750 INFO:teuthology.orchestra.run.smithi046.stdout:loop 2024-02-23T00:25:51.751 INFO:tasks.nvme_loop:Connecting nvme_loop smithi046:/dev/vg_nvme/lv_1... 2024-02-23T00:25:51.752 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:51.772 INFO:teuthology.orchestra.run.smithi046.stdout:1 2024-02-23T00:25:51.797 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/vg_nvme/lv_11 2024-02-23T00:25:51.820 INFO:tasks.nvme_loop:Connecting nvme_loop smithi046:/dev/vg_nvme/lv_2... 2024-02-23T00:25:51.821 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:51.887 INFO:teuthology.orchestra.run.smithi046.stdout:1 2024-02-23T00:25:51.914 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/vg_nvme/lv_21 2024-02-23T00:25:51.935 INFO:tasks.nvme_loop:Connecting nvme_loop smithi046:/dev/vg_nvme/lv_3... 2024-02-23T00:25:51.935 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:52.000 INFO:teuthology.orchestra.run.smithi046.stdout:1 2024-02-23T00:25:52.027 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/vg_nvme/lv_31 2024-02-23T00:25:52.047 INFO:tasks.nvme_loop:Connecting nvme_loop smithi046:/dev/vg_nvme/lv_4... 2024-02-23T00:25:52.048 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:25:52.112 INFO:teuthology.orchestra.run.smithi046.stdout:1 2024-02-23T00:25:52.139 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/vg_nvme/lv_41 2024-02-23T00:25:52.158 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:25:52.158 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:25:52.205 DEBUG:teuthology.orchestra.run.smithi046:> sudo nvme list 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/nvme0n1 PHMB7512009A480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/nvme1n1 1b4e35a49f8d0203 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/nvme2n1 c2bbcf10e321d07b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/nvme3n1 54a4b8522a363f06 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:52.260 INFO:teuthology.orchestra.run.smithi046.stdout:/dev/nvme4n1 44e3e8d4d167b896 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:52.261 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-23T00:25:52.262 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:25:52.262 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/scratch_devs 2024-02-23T00:25:52.318 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:25:52.318 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:25:52.325 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-02-23T00:25:52.325 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_1 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 337 Links: 1 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:24:17.320832451 +0000 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:24:17.160836260 +0000 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:24:17.160836260 +0000 2024-02-23T00:25:52.377 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:25:52.378 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-23T00:25:52.434 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:25:52.435 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:25:52.435 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000374761 s, 1.4 MB/s 2024-02-23T00:25:52.435 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-23T00:25:52.485 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_2 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 343 Links: 1 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:24:17.616825408 +0000 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:24:17.452829311 +0000 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:24:17.452829311 +0000 2024-02-23T00:25:52.536 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:25:52.536 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-23T00:25:52.590 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:25:52.591 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:25:52.591 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000364883 s, 1.4 MB/s 2024-02-23T00:25:52.592 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-23T00:25:52.641 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_3 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 349 Links: 1 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:24:17.912818364 +0000 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:24:17.740822458 +0000 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:24:17.740822458 +0000 2024-02-23T00:25:52.688 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:25:52.689 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-23T00:25:52.742 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:25:52.742 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:25:52.743 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000316182 s, 1.6 MB/s 2024-02-23T00:25:52.743 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-23T00:25:52.793 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/vg_nvme/lv_4 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 355 Links: 1 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:24:18.220811035 +0000 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:24:18.060814843 +0000 2024-02-23T00:25:52.844 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:24:18.060814843 +0000 2024-02-23T00:25:52.845 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:25:52.845 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-23T00:25:52.899 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:25:52.899 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:25:52.899 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.00031282 s, 1.6 MB/s 2024-02-23T00:25:52.900 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-23T00:25:52.949 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:53.053 INFO:teuthology.orchestra.run.smithi142.stdout:loop 2024-02-23T00:25:53.055 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-02-23T00:25:53.055 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:53.069 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-02-23T00:25:53.086 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_11 2024-02-23T00:25:53.101 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-02-23T00:25:53.102 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:53.167 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-02-23T00:25:53.189 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_21 2024-02-23T00:25:53.209 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-02-23T00:25:53.209 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:53.263 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-02-23T00:25:53.278 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_31 2024-02-23T00:25:53.300 INFO:tasks.nvme_loop:Connecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-02-23T00:25:53.300 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T00:25:53.363 INFO:teuthology.orchestra.run.smithi142.stdout:1 2024-02-23T00:25:53.389 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/vg_nvme/lv_41 2024-02-23T00:25:53.410 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:25:53.410 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:25:53.457 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme list 2024-02-23T00:25:53.504 INFO:teuthology.orchestra.run.smithi142.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-23T00:25:53.504 INFO:teuthology.orchestra.run.smithi142.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-23T00:25:53.504 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme0n1 CVFT6303009Y400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-23T00:25:53.505 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme1n1 e85805471aeeb6c8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:53.505 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme2n1 337e52df0876d064 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:53.505 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme3n1 c63d489e74cfc280 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:53.505 INFO:teuthology.orchestra.run.smithi142.stdout:/dev/nvme4n1 a09eff3bd47b11c7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-02-23T00:25:53.506 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-23T00:25:53.506 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:25:53.506 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-02-23T00:25:53.564 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-23T00:25:53.651 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': 'eb66ed921e744301e6863be6353618d63967ea59'} 2024-02-23T00:25:53.652 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-23T00:25:53.652 INFO:tasks.cephadm:Cluster fsid is 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:25:53.653 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-23T00:25:53.653 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-23T00:25:53.653 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi046': '172.21.15.46', 'mon.smithi142': '172.21.15.142'} 2024-02-23T00:25:53.653 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-23T00:25:53.654 DEBUG:teuthology.orchestra.run.smithi046:> sudo hostname $(hostname -s) 2024-02-23T00:25:53.670 DEBUG:teuthology.orchestra.run.smithi142:> sudo hostname $(hostname -s) 2024-02-23T00:25:53.687 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref eb66ed921e744301e6863be6353618d63967ea59)... 2024-02-23T00:25:53.687 DEBUG:teuthology.orchestra.run.smithi046:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/eb66ed921e744301e6863be6353618d63967ea59/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:53.895 INFO:teuthology.orchestra.run.smithi046.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 23 00:25 /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:53.895 DEBUG:teuthology.orchestra.run.smithi142:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/eb66ed921e744301e6863be6353618d63967ea59/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:54.068 INFO:teuthology.orchestra.run.smithi142.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 23 00:25 /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:54.069 DEBUG:teuthology.orchestra.run.smithi046:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:54.078 DEBUG:teuthology.orchestra.run.smithi142:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-23T00:25:54.119 DEBUG:teuthology.orchestra.run.smithi046:> sudo mkdir -p /etc/ceph 2024-02-23T00:25:54.137 DEBUG:teuthology.orchestra.run.smithi142:> sudo mkdir -p /etc/ceph 2024-02-23T00:25:54.153 DEBUG:teuthology.orchestra.run.smithi046:> sudo chmod 777 /etc/ceph 2024-02-23T00:25:54.192 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 777 /etc/ceph 2024-02-23T00:25:54.208 INFO:tasks.cephadm:Writing seed config... 2024-02-23T00:25:54.209 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-23T00:25:54.210 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-23T00:25:54.210 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-23T00:25:54.210 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-23T00:25:54.210 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-23T00:25:54.210 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-23T00:25:54.211 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-23T00:25:54.211 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-23T00:25:54.212 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:25:54.212 DEBUG:teuthology.orchestra.run.smithi046:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-23T00:25:54.240 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 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 = 1abddab2-d1e2-11ee-95c0-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-02-23T00:25:54.240 DEBUG:teuthology.orchestra.run.smithi046:mon.smithi046> sudo journalctl -f -n 0 -u ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046.service 2024-02-23T00:25:54.284 INFO:tasks.cephadm:Bootstrapping... 2024-02-23T00:25:54.284 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 -v bootstrap --fsid 1abddab2-d1e2-11ee-95c0-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.46 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-23T00:25:54.663 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-02-23T00:25:54.695 INFO:teuthology.orchestra.run.smithi046.stderr:-------------------------------------------------------------------------------- 2024-02-23T00:25:54.695 INFO:teuthology.orchestra.run.smithi046.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59', '-v', 'bootstrap', '--fsid', '1abddab2-d1e2-11ee-95c0-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.46', '--skip-admin-label'] 2024-02-23T00:25:54.695 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying podman|docker is present... 2024-02-23T00:25:54.695 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying lvm2 is present... 2024-02-23T00:25:54.695 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying time synchronization is in place... 2024-02-23T00:25:54.704 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-23T00:25:54.711 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.718 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-23T00:25:54.725 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.735 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: enabled 2024-02-23T00:25:54.743 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.753 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-23T00:25:54.760 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.769 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: enabled 2024-02-23T00:25:54.776 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: active 2024-02-23T00:25:54.779 INFO:teuthology.orchestra.run.smithi046.stderr:Unit ntp.service is enabled and running 2024-02-23T00:25:54.779 INFO:teuthology.orchestra.run.smithi046.stderr:Repeating the final host check... 2024-02-23T00:25:54.779 INFO:teuthology.orchestra.run.smithi046.stderr:docker (/usr/bin/docker) is present 2024-02-23T00:25:54.779 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl is present 2024-02-23T00:25:54.779 INFO:teuthology.orchestra.run.smithi046.stderr:lvcreate is present 2024-02-23T00:25:54.786 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-23T00:25:54.794 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.802 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-23T00:25:54.810 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.819 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: enabled 2024-02-23T00:25:54.826 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.836 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-23T00:25:54.842 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: inactive 2024-02-23T00:25:54.851 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: enabled 2024-02-23T00:25:54.860 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: active 2024-02-23T00:25:54.861 INFO:teuthology.orchestra.run.smithi046.stderr:Unit ntp.service is enabled and running 2024-02-23T00:25:54.861 INFO:teuthology.orchestra.run.smithi046.stderr:Host looks OK 2024-02-23T00:25:54.861 INFO:teuthology.orchestra.run.smithi046.stderr:Cluster fsid: 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:25:54.861 INFO:teuthology.orchestra.run.smithi046.stderr:Acquiring lock 140297329763608 on /run/cephadm/1abddab2-d1e2-11ee-95c0-87774f69a715.lock 2024-02-23T00:25:54.862 INFO:teuthology.orchestra.run.smithi046.stderr:Lock 140297329763608 acquired on /run/cephadm/1abddab2-d1e2-11ee-95c0-87774f69a715.lock 2024-02-23T00:25:54.863 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying IP 172.21.15.46 port 3300 ... 2024-02-23T00:25:54.863 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying IP 172.21.15.46 port 6789 ... 2024-02-23T00:25:54.863 INFO:teuthology.orchestra.run.smithi046.stderr:Base mon IP(s) is [172.21.15.46:3300, 172.21.15.46:6789], mon addrv is [v2:172.21.15.46:3300,v1:172.21.15.46:6789] 2024-02-23T00:25:54.867 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: default via 172.21.15.254 dev ens1f0 2024-02-23T00:25:54.867 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-23T00:25:54.867 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.46 2024-02-23T00:25:54.872 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-02-23T00:25:54.872 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1798sec hoplimit 64 pref medium 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: 3: ens1f0: mtu 1500 state UP qlen 1000 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: inet6 fe80::ec4:7aff:febd:15f8/64 scope link 2024-02-23T00:25:54.876 INFO:teuthology.orchestra.run.smithi046.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-02-23T00:25:54.878 INFO:teuthology.orchestra.run.smithi046.stderr:Mon IP `172.21.15.46` is in CIDR network `172.21.0.0/20` 2024-02-23T00:25:54.878 INFO:teuthology.orchestra.run.smithi046.stderr:Mon IP `172.21.15.46` is in CIDR network `172.21.0.0/20` 2024-02-23T00:25:54.878 INFO:teuthology.orchestra.run.smithi046.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-02-23T00:25:54.879 INFO:teuthology.orchestra.run.smithi046.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-23T00:25:54.879 INFO:teuthology.orchestra.run.smithi046.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59... 2024-02-23T00:25:55.218 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: eb66ed921e744301e6863be6353618d63967ea59: Pulling from ceph-ci/ceph 2024-02-23T00:25:55.220 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 0f642e61a11a: Pulling fs layer 2024-02-23T00:25:55.220 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 6a725db67f9d: Pulling fs layer 2024-02-23T00:25:55.921 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 0f642e61a11a: Verifying Checksum 2024-02-23T00:25:55.921 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 0f642e61a11a: Download complete 2024-02-23T00:25:57.963 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 6a725db67f9d: Verifying Checksum 2024-02-23T00:25:57.963 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 6a725db67f9d: Download complete 2024-02-23T00:25:58.481 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 0f642e61a11a: Pull complete 2024-02-23T00:26:08.836 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: 6a725db67f9d: Pull complete 2024-02-23T00:26:08.940 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: Digest: sha256:44277403522cf37edeee63b04643fd6c6e9416f13c3731a771e3cc8e53b7d010 2024-02-23T00:26:08.988 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-23T00:26:09.007 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 2024-02-23T00:26:18.323 INFO:teuthology.orchestra.run.smithi046.stderr:ceph: ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable) 2024-02-23T00:26:18.808 INFO:teuthology.orchestra.run.smithi046.stderr:Ceph version: ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable) 2024-02-23T00:26:18.808 INFO:teuthology.orchestra.run.smithi046.stderr:Extracting ceph user uid/gid from container image... 2024-02-23T00:26:19.569 INFO:teuthology.orchestra.run.smithi046.stderr:stat: 167 167 2024-02-23T00:26:20.069 INFO:teuthology.orchestra.run.smithi046.stderr:Creating initial keys... 2024-02-23T00:26:20.902 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-authtool: AQAs5tdl6zy1NRAAtVEtRZ5R1hfy8Jm4APEMWg== 2024-02-23T00:26:22.113 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-authtool: AQAu5tdlYxCzBhAAX7W94VgPl6ymiqunHbLf6g== 2024-02-23T00:26:23.496 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-authtool: AQAv5tdlZxKAHRAAVKbJ1EQeuDilhaDXytaRcw== 2024-02-23T00:26:24.150 INFO:teuthology.orchestra.run.smithi046.stderr:Creating initial monmap... 2024-02-23T00:26:24.732 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-23T00:26:24.732 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:24.732 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-23T00:26:25.196 INFO:teuthology.orchestra.run.smithi046.stderr:monmaptool for smithi046 [v2:172.21.15.46:3300,v1:172.21.15.46:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-23T00:26:25.196 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/monmaptool: set fsid to 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:25.197 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-23T00:26:25.197 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:26:25.197 INFO:teuthology.orchestra.run.smithi046.stderr:Creating mon... 2024-02-23T00:26:26.030 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-23T00:26:26.030 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 1 imported monmap: 2024-02-23T00:26:26.030 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-23T00:26:26.031 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:26.031 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: last_changed 2024-02-23T00:26:24.731059+0000 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: created 2024-02-23T00:26:24.731059+0000 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0] mon.smithi046 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.032 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 0 /usr/bin/ceph-mon: set fsid to 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:26.063 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: RocksDB version: 6.8.1 2024-02-23T00:26:26.063 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.063 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Compile date Feb 20 2024 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: DB SUMMARY 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi046/store.db dir, Total Num: 0, files: 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi046/store.db: 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.error_if_exists: 0 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.create_if_missing: 1 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.paranoid_checks: 1 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.env: 0x560e56218080 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.fs: Posix File System 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.info_log: 0x560e57a5f300 2024-02-23T00:26:26.064 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.statistics: (nil) 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.use_fsync: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_log_file_size: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.allow_fallocate: 1 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.use_direct_reads: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-23T00:26:26.065 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.db_log_dir: 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi046/store.db 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_subcompactions: 1 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_background_flushes: -1 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.write_buffer_manager: 0x560e57a65950 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-23T00:26:26.066 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.unordered_write: 0 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.row_cache: None 2024-02-23T00:26:26.067 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.wal_filter: None 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.preserve_deletes: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.two_write_queues: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.atomic_flush: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.log_readahead_size: 0 2024-02-23T00:26:26.068 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_background_jobs: 2 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_background_compactions: -1 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-23T00:26:26.069 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.max_open_files: -1 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Compression algorithms supported: 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kZSTD supported: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kXpressCompression supported: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kLZ4Compression supported: 1 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kBZip2Compression supported: 0 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kZlibCompression supported: 1 2024-02-23T00:26:26.070 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: kSnappyCompression supported: 1 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.024+0000 7f4d96094880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi046/store.db/MANIFEST-000001 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.merge_operator: 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_filter: None 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-23T00:26:26.071 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560e57973d18) 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-23T00:26:26.072 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_cache: 0x560e579aad10 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-23T00:26:26.073 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-23T00:26:26.074 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression: NoCompression 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.num_levels: 7 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-23T00:26:26.075 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-23T00:26:26.076 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-23T00:26:26.077 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-23T00:26:26.078 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.table_properties_collectors: 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.inplace_update_support: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.bloom_locality: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.max_successive_merges: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-23T00:26:26.079 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.ttl: 2592000 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi046/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-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d96094880 4 rocksdb: DB pointer 0x560e57a73800 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d7ef07700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.028+0000 7f4d7ef07700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.080 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:26.081 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:26.082 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:26:26.083 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.084 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:26:26.084 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: 2024-02-23T00:26:26.084 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.032+0000 7f4d96094880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-23T00:26:26.084 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.032+0000 7f4d96094880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-23T00:26:26.084 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph-mon: debug 2024-02-23T00:26:26.032+0000 7f4d96094880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi046 for mon.smithi046 2024-02-23T00:26:26.506 INFO:teuthology.orchestra.run.smithi046.stderr:create mon.smithi046 on 2024-02-23T00:26:26.639 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-23T00:26:26.765 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target -> /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target. 2024-02-23T00:26:26.765 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target -> /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target. 2024-02-23T00:26:26.996 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to reset failed state of unit ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046.service: Unit ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046.service is not loaded. 2024-02-23T00:26:27.002 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Created symlink /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target.wants/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046.service -> /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@.service. 2024-02-23T00:26:27.128 INFO:teuthology.orchestra.run.smithi046.stderr:firewalld does not appear to be present 2024-02-23T00:26:27.128 INFO:teuthology.orchestra.run.smithi046.stderr:Not possible to enable service . firewalld.service is not available 2024-02-23T00:26:27.128 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mon to start... 2024-02-23T00:26:27.129 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mon... 2024-02-23T00:26:27.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:27 smithi046 systemd[1]: Started Ceph mon.smithi046 for 1abddab2-d1e2-11ee-95c0-87774f69a715. 2024-02-23T00:26:28.733 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:28 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.474357+0000 mon.smithi046 (mon.0) 0 : [INF] mkfs 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:28.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:28 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.466573+0000 mon.smithi046 (mon.0) 1 : cluster [INF] mon.smithi046 is new leader, mons smithi046 in quorum (ranks 0) 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: cluster: 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: id: 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: services: 2024-02-23T00:26:28.807 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi046 (age 0.331869s) 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: data: 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: pgs: 2024-02-23T00:26:28.808 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:29.292 INFO:teuthology.orchestra.run.smithi046.stderr:mon is available 2024-02-23T00:26:29.292 INFO:teuthology.orchestra.run.smithi046.stderr:Assimilating anything we can from ceph.conf... 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.472453+0000 mon.smithi046 (mon.0) 2 : cluster [INF] mon.smithi046 is new leader, mons smithi046 in quorum (ranks 0) 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.472742+0000 mon.smithi046 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi046=[v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0]} removed_ranks: {} 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.476990+0000 mon.smithi046 (mon.0) 4 : cluster [DBG] fsmap 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.481287+0000 mon.smithi046 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: cluster 2024-02-23T00:26:28.482238+0000 mon.smithi046 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-23T00:26:29.968 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:29 smithi046 bash[15635]: audit 2024-02-23T00:26:28.804246+0000 mon.smithi046 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.46:0/1528448510' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-23T00:26:30.459 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:30.459 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [global] 2024-02-23T00:26:30.459 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: fsid = 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.46:3300,v1:172.21.15.46:6789] 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [mgr] 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [osd] 2024-02-23T00:26:30.461 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-23T00:26:30.462 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-23T00:26:30.955 INFO:teuthology.orchestra.run.smithi046.stderr:Generating new minimal ceph.conf... 2024-02-23T00:26:30.983 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:30 smithi046 bash[15635]: audit 2024-02-23T00:26:30.451622+0000 mon.smithi046 (mon.0) 8 : audit [INF] from='client.? 172.21.15.46:0/1760552691' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-23T00:26:30.983 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:30 smithi046 bash[15635]: audit 2024-02-23T00:26:30.457375+0000 mon.smithi046 (mon.0) 9 : audit [INF] from='client.? 172.21.15.46:0/1760552691' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-23T00:26:32.483 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:32 smithi046 bash[15635]: audit 2024-02-23T00:26:32.034698+0000 mon.smithi046 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.46:0/1763529951' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:26:32.484 INFO:teuthology.orchestra.run.smithi046.stderr:Restarting the monitor... 2024-02-23T00:26:32.787 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:32 smithi046 systemd[1]: Stopping Ceph mon.smithi046 for 1abddab2-d1e2-11ee-95c0-87774f69a715... 2024-02-23T00:26:32.787 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:32 smithi046 bash[16152]: Error response from daemon: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-mon.smithi046 2024-02-23T00:26:32.787 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:32 smithi046 bash[15635]: debug 2024-02-23T00:26:32.663+0000 7ff36fc55700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi046 -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-02-23T00:26:32.787 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:32 smithi046 bash[15635]: debug 2024-02-23T00:26:32.663+0000 7ff36fc55700 -1 mon.smithi046@0(leader) e1 *** Got Signal Terminated *** 2024-02-23T00:26:33.332 INFO:teuthology.orchestra.run.smithi046.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-02-23T00:26:33.733 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:33 smithi046 bash[16152]: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-mon-smithi046 2024-02-23T00:26:33.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:33 smithi046 systemd[1]: Stopped Ceph mon.smithi046 for 1abddab2-d1e2-11ee-95c0-87774f69a715. 2024-02-23T00:26:33.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:33 smithi046 systemd[1]: Started Ceph mon.smithi046 for 1abddab2-d1e2-11ee-95c0-87774f69a715. 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.483+0000 7f340b370880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.483+0000 7f340b370880 0 ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable), process ceph-mon, pid 8 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.483+0000 7f340b370880 0 pidfile_write: ignore empty --pid-file 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 0 load: jerasure load: lrc load: isa 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: RocksDB version: 6.8.1 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Compile date Feb 20 2024 2024-02-23T00:26:34.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: DB SUMMARY 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: CURRENT file: CURRENT 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi046/store.db dir, Total Num: 1, files: 000004.sst 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi046/store.db: 000006.log size: 87037 ; 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.error_if_exists: 0 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.create_if_missing: 0 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.paranoid_checks: 1 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.env: 0x55e0428cd080 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.fs: Posix File System 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.info_log: 0x55e045128560 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.statistics: (nil) 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.use_fsync: 0 2024-02-23T00:26:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_log_file_size: 0 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.allow_fallocate: 1 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-23T00:26:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.use_direct_reads: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.db_log_dir: 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi046/store.db 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_subcompactions: 1 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_background_flushes: -1 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-23T00:26:34.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.write_buffer_manager: 0x55e045d9a450 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-23T00:26:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.unordered_write: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.row_cache: None 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.wal_filter: None 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.preserve_deletes: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.two_write_queues: 0 2024-02-23T00:26:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.atomic_flush: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.log_readahead_size: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_background_jobs: 2 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_background_compactions: -1 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-23T00:26:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_open_files: -1 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Compression algorithms supported: 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kZSTD supported: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kXpressCompression supported: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kLZ4Compression supported: 1 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kBZip2Compression supported: 0 2024-02-23T00:26:34.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kZlibCompression supported: 1 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: kSnappyCompression supported: 1 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi046/store.db/MANIFEST-000005 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.merge_operator: 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_filter: None 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55e0450cbd10) 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cache_index_and_filter_blocks: 1 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-23T00:26:34.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: pin_top_level_index_and_filter: 1 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: index_type: 0 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: data_block_index_type: 0 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: index_shortening: 1 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: data_block_hash_table_util_ratio: 0.750000 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: hash_index_allow_collision: 1 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: checksum: 1 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: no_block_cache: 0 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_cache: 0x55e045102f10 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_cache_name: BinnedLRUCache 2024-02-23T00:26:34.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_cache_options: 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: capacity : 536870912 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: num_shard_bits : 4 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: strict_capacity_limit : 0 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: high_pri_pool_ratio: 0.000 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_cache_compressed: (nil) 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: persistent_cache: (nil) 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_size: 4096 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_size_deviation: 10 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_restart_interval: 16 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: index_block_restart_interval: 1 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: metadata_block_size: 4096 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: partition_filters: 0 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: use_delta_encoding: 1 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-23T00:26:34.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: whole_key_filtering: 1 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: verify_compression: 0 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: read_amp_bytes_per_bit: 0 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: format_version: 2 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: enable_index_compression: 1 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: block_align: 0 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression: NoCompression 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.num_levels: 7 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-23T00:26:34.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-23T00:26:34.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-23T00:26:34.748 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-23T00:26:34.749 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-23T00:26:34.750 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-23T00:26:34.750 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-23T00:26:34.750 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.table_properties_collectors: 2024-02-23T00:26:34.750 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.inplace_update_support: 0 2024-02-23T00:26:34.750 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.bloom_locality: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.max_successive_merges: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.ttl: 2592000 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.487+0000 7f340b370880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-23T00:26:34.751 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi046/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-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708647994496207, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 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-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708647994497359, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83746, "table_properties": {"data_size": 82013, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9462, "raw_average_key_size": 47, "raw_value_size": 76568, "raw_average_value_size": 382, "num_data_blocks": 11, "num_entries": 200, "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": 1708647994, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.491+0000 7f340b370880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708647994498727, "job": 1, "event": "recovery_finished"} 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f340b370880 4 rocksdb: DB pointer 0x55e0451cb800 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f33f2162700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f33f2162700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** DB Stats ** 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:34.752 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** Compaction Stats [default] ** 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: L0 2/0 83.48 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Sum 2/0 83.48 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.753 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** Compaction Stats [default] ** 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Cumulative compaction: 0.00 GB write, 13.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Interval compaction: 0.00 GB write, 13.97 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.754 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** Compaction Stats [default] ** 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: L0 2/0 83.48 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Sum 2/0 83.48 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** Compaction Stats [default] ** 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 104.9 0.00 0.00 1 0.001 0 0 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:26:34.755 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Cumulative compaction: 0.00 GB write, 13.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f340b370880 0 starting mon.smithi046 rank 0 at public addrs [v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0] at bind addrs [v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi046 fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f340b370880 1 mon.smithi046@-1(???) e1 preinit fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f340b370880 0 mon.smithi046@-1(???).mds e1 new map 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.495+0000 7f340b370880 0 mon.smithi046@-1(???).mds e1 print_map 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: e1 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 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-02-23T00:26:34.756 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: legacy client fscid: -1 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: No filesystems configured 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.499+0000 7f340b370880 0 mon.smithi046@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.499+0000 7f340b370880 0 mon.smithi046@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.499+0000 7f340b370880 0 mon.smithi046@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: audit 2024-02-23T00:26:32.034698+0000 mon.smithi046 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.46:0/1763529951' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: debug 2024-02-23T00:26:34.499+0000 7f340b370880 1 mon.smithi046@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cluster 2024-02-23T00:26:34.506945+0000 mon.smithi046 (mon.0) 1 : cluster [INF] mon.smithi046 is new leader, mons smithi046 in quorum (ranks 0) 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cluster 2024-02-23T00:26:34.507020+0000 mon.smithi046 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi046=[v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0]} removed_ranks: {} 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cluster 2024-02-23T00:26:34.507662+0000 mon.smithi046 (mon.0) 3 : cluster [DBG] fsmap 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cluster 2024-02-23T00:26:34.507730+0000 mon.smithi046 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-23T00:26:34.757 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:34 smithi046 bash[16275]: cluster 2024-02-23T00:26:34.508261+0000 mon.smithi046 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-23T00:26:35.406 INFO:teuthology.orchestra.run.smithi046.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-23T00:26:35.406 INFO:teuthology.orchestra.run.smithi046.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-23T00:26:35.406 INFO:teuthology.orchestra.run.smithi046.stderr:Creating mgr... 2024-02-23T00:26:35.407 INFO:teuthology.orchestra.run.smithi046.stderr:Verifying port 9283 ... 2024-02-23T00:26:35.544 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Failed to reset failed state of unit ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mgr.smithi046.lplrtl.service: Unit ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mgr.smithi046.lplrtl.service is not loaded. 2024-02-23T00:26:35.553 INFO:teuthology.orchestra.run.smithi046.stderr:systemctl: Created symlink /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715.target.wants/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mgr.smithi046.lplrtl.service -> /etc/systemd/system/ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@.service. 2024-02-23T00:26:35.672 INFO:teuthology.orchestra.run.smithi046.stderr:firewalld does not appear to be present 2024-02-23T00:26:35.673 INFO:teuthology.orchestra.run.smithi046.stderr:Not possible to enable service . firewalld.service is not available 2024-02-23T00:26:35.673 INFO:teuthology.orchestra.run.smithi046.stderr:firewalld does not appear to be present 2024-02-23T00:26:35.673 INFO:teuthology.orchestra.run.smithi046.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-23T00:26:35.673 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mgr to start... 2024-02-23T00:26:35.673 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mgr... 2024-02-23T00:26:35.983 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:35 smithi046 bash[16275]: audit 2024-02-23T00:26:34.873052+0000 mon.smithi046 (mon.0) 6 : audit [INF] from='client.? 172.21.15.46:0/969939970' entity='client.admin' 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsid": "1abddab2-d1e2-11ee-95c0-87774f69a715", 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "health": { 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "checks": {}, 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mutes": [] 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.503 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum": [ 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 0 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "smithi046" 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "monmap": { 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osdmap": { 2024-02-23T00:26:37.504 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:37.505 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-23T00:26:37.505 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-23T00:26:37.505 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-23T00:26:37.505 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgmap": { 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-23T00:26:37.509 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsmap": { 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "available": false, 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modules": [ 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "iostat", 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "nfs", 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "restful" 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:37.510 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "servicemap": { 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modified": "2024-02-23T00:26:28.475002+0000", 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-23T00:26:37.511 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:26:37.733 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:37 smithi046 bash[16275]: audit 2024-02-23T00:26:37.498739+0000 mon.smithi046 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.46:0/2878000416' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-23T00:26:37.980 INFO:teuthology.orchestra.run.smithi046.stderr:mgr not available, waiting (1/15)... 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsid": "1abddab2-d1e2-11ee-95c0-87774f69a715", 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "health": { 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "checks": {}, 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mutes": [] 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-23T00:26:41.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum": [ 2024-02-23T00:26:41.149 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 0 2024-02-23T00:26:41.149 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:41.149 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "smithi046" 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "monmap": { 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osdmap": { 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-23T00:26:41.150 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgmap": { 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsmap": { 2024-02-23T00:26:41.151 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "available": false, 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modules": [ 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "iostat", 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "nfs", 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "restful" 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "servicemap": { 2024-02-23T00:26:41.152 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:41.153 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modified": "2024-02-23T00:26:28.475002+0000", 2024-02-23T00:26:41.153 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:41.153 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:41.153 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-23T00:26:41.153 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:26:41.365 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:41 smithi046 bash[16275]: audit 2024-02-23T00:26:41.138207+0000 mon.smithi046 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.46:0/2618036281' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-23T00:26:41.796 INFO:teuthology.orchestra.run.smithi046.stderr:mgr not available, waiting (2/15)... 2024-02-23T00:26:44.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: cluster 2024-02-23T00:26:43.776805+0000 mon.smithi046 (mon.0) 9 : cluster [INF] Activating manager daemon smithi046.lplrtl 2024-02-23T00:26:44.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: cluster 2024-02-23T00:26:43.782964+0000 mon.smithi046 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi046.lplrtl(active, starting, since 0.00640862s) 2024-02-23T00:26:44.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.784699+0000 mon.smithi046 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-23T00:26:44.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.785094+0000 mon.smithi046 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-23T00:26:44.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.785392+0000 mon.smithi046 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.785671+0000 mon.smithi046 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.786521+0000 mon.smithi046 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi046.lplrtl", "id": "smithi046.lplrtl"}]: dispatch 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: cluster 2024-02-23T00:26:43.791364+0000 mon.smithi046 (mon.0) 16 : cluster [INF] Manager daemon smithi046.lplrtl is now available 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.810580+0000 mon.smithi046 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.818926+0000 mon.smithi046 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/mirror_snapshot_schedule"}]: dispatch 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.822787+0000 mon.smithi046 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/trash_purge_schedule"}]: dispatch 2024-02-23T00:26:44.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:43 smithi046 bash[16275]: audit 2024-02-23T00:26:43.827767+0000 mon.smithi046 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:44.983 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:44 smithi046 bash[16275]: audit 2024-02-23T00:26:43.835213+0000 mon.smithi046 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.46:0/2877436783' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:44.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:44 smithi046 bash[16275]: cluster 2024-02-23T00:26:44.783838+0000 mon.smithi046 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi046.lplrtl(active, since 1.00729s) 2024-02-23T00:26:45.375 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:45.375 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:26:45.375 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsid": "1abddab2-d1e2-11ee-95c0-87774f69a715", 2024-02-23T00:26:45.376 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "health": { 2024-02-23T00:26:45.376 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-23T00:26:45.376 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "checks": {}, 2024-02-23T00:26:45.376 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mutes": [] 2024-02-23T00:26:45.376 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.377 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-23T00:26:45.377 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum": [ 2024-02-23T00:26:45.377 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 0 2024-02-23T00:26:45.377 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:45.385 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-23T00:26:45.385 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "smithi046" 2024-02-23T00:26:45.385 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "monmap": { 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.386 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osdmap": { 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-23T00:26:45.387 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgmap": { 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-23T00:26:45.388 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "fsmap": { 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-23T00:26:45.389 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "available": true, 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modules": [ 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "iostat", 2024-02-23T00:26:45.390 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "nfs", 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "restful" 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ], 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "servicemap": { 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "modified": "2024-02-23T00:26:28.475002+0000", 2024-02-23T00:26:45.391 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "services": {} 2024-02-23T00:26:45.392 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: }, 2024-02-23T00:26:45.392 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-23T00:26:45.392 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:26:46.018 INFO:teuthology.orchestra.run.smithi046.stderr:mgr is available 2024-02-23T00:26:46.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:45 smithi046 bash[16275]: audit 2024-02-23T00:26:45.373152+0000 mon.smithi046 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.46:0/705098108' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-23T00:26:46.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:46 smithi046 bash[16275]: cluster 2024-02-23T00:26:45.843276+0000 mon.smithi046 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi046.lplrtl(active, since 2s) 2024-02-23T00:26:47.411 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:47.411 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [global] 2024-02-23T00:26:47.411 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: fsid = 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:26:47.412 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: log_to_journald = false 2024-02-23T00:26:47.412 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-23T00:26:47.412 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [mgr] 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-23T00:26:47.413 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 2024-02-23T00:26:47.414 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: [osd] 2024-02-23T00:26:47.414 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-23T00:26:47.414 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-23T00:26:47.934 INFO:teuthology.orchestra.run.smithi046.stderr:Enabling cephadm module... 2024-02-23T00:26:48.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:47 smithi046 bash[16275]: audit 2024-02-23T00:26:47.408180+0000 mon.smithi046 (mon.0) 25 : audit [INF] from='client.? 172.21.15.46:0/3105947396' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-23T00:26:49.802 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:49 smithi046 bash[16275]: audit 2024-02-23T00:26:49.444761+0000 mon.smithi046 (mon.0) 26 : audit [INF] from='client.? 172.21.15.46:0/2528116708' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-23T00:26:50.795 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:50 smithi046 bash[16275]: audit 2024-02-23T00:26:49.501952+0000 mon.smithi046 (mon.0) 27 : audit [INF] from='client.? 172.21.15.46:0/2528116708' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-23T00:26:50.795 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:50 smithi046 bash[16275]: cluster 2024-02-23T00:26:49.502101+0000 mon.smithi046 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi046.lplrtl(active, since 5s) 2024-02-23T00:26:51.575 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:26:51.588 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-23T00:26:51.588 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "available": true, 2024-02-23T00:26:51.588 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "active_name": "smithi046.lplrtl", 2024-02-23T00:26:51.588 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-23T00:26:51.588 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:26:51.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:51 smithi046 bash[16275]: audit 2024-02-23T00:26:51.573344+0000 mon.smithi046 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.46:0/2375639119' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-23T00:26:52.103 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for the mgr to restart... 2024-02-23T00:26:52.104 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mgr epoch 5... 2024-02-23T00:26:56.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: cluster 2024-02-23T00:26:56.085004+0000 mon.smithi046 (mon.0) 30 : cluster [INF] Active manager daemon smithi046.lplrtl restarted 2024-02-23T00:26:56.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: cluster 2024-02-23T00:26:56.085284+0000 mon.smithi046 (mon.0) 31 : cluster [INF] Activating manager daemon smithi046.lplrtl 2024-02-23T00:26:56.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: cluster 2024-02-23T00:26:56.091464+0000 mon.smithi046 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-23T00:26:56.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: cluster 2024-02-23T00:26:56.091755+0000 mon.smithi046 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi046.lplrtl(active, starting, since 0.00655887s) 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.093834+0000 mon.smithi046 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.095565+0000 mon.smithi046 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi046.lplrtl", "id": "smithi046.lplrtl"}]: dispatch 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.097136+0000 mon.smithi046 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.097573+0000 mon.smithi046 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.097923+0000 mon.smithi046 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: cluster 2024-02-23T00:26:56.102839+0000 mon.smithi046 (mon.0) 39 : cluster [INF] Manager daemon smithi046.lplrtl is now available 2024-02-23T00:26:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:56 smithi046 bash[16275]: audit 2024-02-23T00:26:56.123735+0000 mon.smithi046 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:57.114 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:26:57.114 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-23T00:26:57.114 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "initialized": true 2024-02-23T00:26:57.114 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:26:57.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: cephadm 2024-02-23T00:26:56.118658+0000 mgr.smithi046.lplrtl (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-23T00:26:57.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.253965+0000 mon.smithi046 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:57.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.255821+0000 mon.smithi046 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:26:57.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.259449+0000 mon.smithi046 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:26:57.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.262521+0000 mon.smithi046 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:26:57.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.290916+0000 mon.smithi046 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/mirror_snapshot_schedule"}]: dispatch 2024-02-23T00:26:57.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: audit 2024-02-23T00:26:56.296879+0000 mon.smithi046 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/trash_purge_schedule"}]: dispatch 2024-02-23T00:26:57.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:57 smithi046 bash[16275]: cluster 2024-02-23T00:26:57.096275+0000 mon.smithi046 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi046.lplrtl(active, since 1.01107s) 2024-02-23T00:26:57.802 INFO:teuthology.orchestra.run.smithi046.stderr:mgr epoch 5 is available 2024-02-23T00:26:57.803 INFO:teuthology.orchestra.run.smithi046.stderr:Setting orchestrator backend to cephadm... 2024-02-23T00:26:58.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:58 smithi046 bash[16275]: audit 2024-02-23T00:26:57.094425+0000 mgr.smithi046.lplrtl (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-23T00:26:58.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:58 smithi046 bash[16275]: audit 2024-02-23T00:26:57.112176+0000 mgr.smithi046.lplrtl (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-23T00:26:59.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:59 smithi046 bash[16275]: cluster 2024-02-23T00:26:58.256993+0000 mon.smithi046 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi046.lplrtl(active, since 2s) 2024-02-23T00:26:59.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:59 smithi046 bash[16275]: audit 2024-02-23T00:26:59.131189+0000 mon.smithi046 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:26:59.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:26:59 smithi046 bash[16275]: audit 2024-02-23T00:26:59.193681+0000 mon.smithi046 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:27:00.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:00 smithi046 bash[16275]: audit 2024-02-23T00:26:59.126471+0000 mgr.smithi046.lplrtl (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:01.082 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: value unchanged 2024-02-23T00:27:01.608 INFO:teuthology.orchestra.run.smithi046.stderr:Generating ssh key... 2024-02-23T00:27:01.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:01 smithi046 bash[16275]: audit 2024-02-23T00:27:01.080326+0000 mgr.smithi046.lplrtl (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:04.424 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:04 smithi046 bash[16275]: audit 2024-02-23T00:27:03.044290+0000 mgr.smithi046.lplrtl (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:04.424 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:04 smithi046 bash[16275]: cephadm 2024-02-23T00:27:03.044708+0000 mgr.smithi046.lplrtl (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-23T00:27:04.424 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:04 smithi046 bash[16275]: audit 2024-02-23T00:27:03.145555+0000 mon.smithi046 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:04.424 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:04 smithi046 bash[16275]: audit 2024-02-23T00:27:03.149253+0000 mon.smithi046 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:05.020 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCn80n9t4G80sJ/Vuop5Ltza2177IGIOzFj9+Nm9GP4xb3yaCkRzm6euTjcm194zBiI5dyvqpNdmeN7yyPNm45xx8u/u1jKAvxpnLWZIbArBX/XJ7LkpTDTssrWw7s91XJOsOT/Rnaxtp7+YoXIfcXw+Pc8GzrPHu+YQLUm7bf7BMCoJsS+PQ7RbCB+iNwQ+4acScIZj6TRfsmvtYweSVlFjAm7aNe1eovgywRwAnMU2m7oO56ypBCEaPGcg90KiOUlrPuCIS38Cy/8Z1RIhmF6a6VGwMVuFsl/5mx3bHFpEfHGn50+HWHnzamxTdW/D7oCWXHR63TCzg8pYlhLAe7Rmw6QqTtmFho7N2xKilagf17VGSGa7XcSq3LyrKTjVemkpOpJz750orZrZp5IyCYbJ3cNtUVbeo/x3eZm+rfyUOjcOHCRW3WsfHXGmc9c9HuB6OJvJPBw5Ld8/QUoQFSzTLVrpHT/Jw6gyReF8pd2HcHkuXyDVGtiuK9Ead6QVzM= ceph-1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:27:05.528 INFO:teuthology.orchestra.run.smithi046.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-23T00:27:05.529 INFO:teuthology.orchestra.run.smithi046.stderr:Adding key to root@localhost authorized_keys... 2024-02-23T00:27:05.529 INFO:teuthology.orchestra.run.smithi046.stderr:Adding host smithi046... 2024-02-23T00:27:05.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:05 smithi046 bash[16275]: audit 2024-02-23T00:27:05.018083+0000 mgr.smithi046.lplrtl (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:07.797 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Added host 'smithi046' with addr '172.21.15.46' 2024-02-23T00:27:07.873 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:07 smithi046 bash[16275]: audit 2024-02-23T00:27:06.976497+0000 mgr.smithi046.lplrtl (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi046", "addr": "172.21.15.46", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:08.470 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying mon service with default placement... 2024-02-23T00:27:09.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:08 smithi046 bash[16275]: audit 2024-02-23T00:27:07.794860+0000 mon.smithi046 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:09.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:08 smithi046 bash[16275]: cephadm 2024-02-23T00:27:07.795391+0000 mgr.smithi046.lplrtl (mgr.14116) 10 : cephadm [INF] Added host smithi046 2024-02-23T00:27:09.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:08 smithi046 bash[16275]: audit 2024-02-23T00:27:07.841513+0000 mon.smithi046 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:27:10.246 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-23T00:27:10.887 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying mgr service with default placement... 2024-02-23T00:27:11.571 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:11 smithi046 bash[16275]: audit 2024-02-23T00:27:10.238732+0000 mgr.smithi046.lplrtl (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:11.571 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:11 smithi046 bash[16275]: cephadm 2024-02-23T00:27:10.240134+0000 mgr.smithi046.lplrtl (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-23T00:27:11.571 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:11 smithi046 bash[16275]: audit 2024-02-23T00:27:10.244625+0000 mon.smithi046 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:11.571 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:11 smithi046 bash[16275]: audit 2024-02-23T00:27:10.486359+0000 mon.smithi046 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:11.571 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:11 smithi046 bash[16275]: audit 2024-02-23T00:27:10.795612+0000 mon.smithi046 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:12.265 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-23T00:27:12.902 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying crash service with default placement... 2024-02-23T00:27:13.575 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:13 smithi046 bash[16275]: audit 2024-02-23T00:27:12.257281+0000 mgr.smithi046.lplrtl (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:13.575 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:13 smithi046 bash[16275]: cephadm 2024-02-23T00:27:12.259488+0000 mgr.smithi046.lplrtl (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-23T00:27:13.575 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:13 smithi046 bash[16275]: audit 2024-02-23T00:27:12.262894+0000 mon.smithi046 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:14.287 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-23T00:27:14.898 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying prometheus service with default placement... 2024-02-23T00:27:15.586 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:15 smithi046 bash[16275]: audit 2024-02-23T00:27:14.277759+0000 mgr.smithi046.lplrtl (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:15.586 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:15 smithi046 bash[16275]: cephadm 2024-02-23T00:27:14.280120+0000 mgr.smithi046.lplrtl (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-23T00:27:15.586 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:15 smithi046 bash[16275]: audit 2024-02-23T00:27:14.284725+0000 mon.smithi046 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:16.354 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-23T00:27:16.996 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying grafana service with default placement... 2024-02-23T00:27:17.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:16 smithi046 bash[16275]: audit 2024-02-23T00:27:15.941465+0000 mon.smithi046 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:17.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:16 smithi046 bash[16275]: cluster 2024-02-23T00:27:16.098762+0000 mgr.smithi046.lplrtl (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:17.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:16 smithi046 bash[16275]: audit 2024-02-23T00:27:16.345056+0000 mgr.smithi046.lplrtl (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:17.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:16 smithi046 bash[16275]: cephadm 2024-02-23T00:27:16.347336+0000 mgr.smithi046.lplrtl (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-23T00:27:17.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:16 smithi046 bash[16275]: audit 2024-02-23T00:27:16.352205+0000 mon.smithi046 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:18.439 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-23T00:27:18.962 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying node-exporter service with default placement... 2024-02-23T00:27:19.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:19 smithi046 bash[16275]: cluster 2024-02-23T00:27:18.099096+0000 mgr.smithi046.lplrtl (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:19.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:19 smithi046 bash[16275]: audit 2024-02-23T00:27:18.432937+0000 mgr.smithi046.lplrtl (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:19.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:19 smithi046 bash[16275]: cephadm 2024-02-23T00:27:18.433963+0000 mgr.smithi046.lplrtl (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-23T00:27:19.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:19 smithi046 bash[16275]: audit 2024-02-23T00:27:18.437269+0000 mon.smithi046 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:20.284 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-23T00:27:20.841 INFO:teuthology.orchestra.run.smithi046.stderr:Deploying alertmanager service with default placement... 2024-02-23T00:27:21.535 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:21 smithi046 bash[16275]: cluster 2024-02-23T00:27:20.099445+0000 mgr.smithi046.lplrtl (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:21.535 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:21 smithi046 bash[16275]: audit 2024-02-23T00:27:20.275140+0000 mgr.smithi046.lplrtl (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:21.535 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:21 smithi046 bash[16275]: cephadm 2024-02-23T00:27:20.277433+0000 mgr.smithi046.lplrtl (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-23T00:27:21.536 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:21 smithi046 bash[16275]: audit 2024-02-23T00:27:20.281982+0000 mon.smithi046 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:22.252 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-23T00:27:23.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:23 smithi046 bash[16275]: cluster 2024-02-23T00:27:22.099796+0000 mgr.smithi046.lplrtl (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:23.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:23 smithi046 bash[16275]: audit 2024-02-23T00:27:22.242458+0000 mgr.smithi046.lplrtl (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:23.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:23 smithi046 bash[16275]: cephadm 2024-02-23T00:27:22.244654+0000 mgr.smithi046.lplrtl (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-23T00:27:23.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:23 smithi046 bash[16275]: audit 2024-02-23T00:27:22.249302+0000 mon.smithi046 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.46:0/2357182687' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:25.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:25 smithi046 bash[16275]: cluster 2024-02-23T00:27:24.100130+0000 mgr.smithi046.lplrtl (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:25.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:25 smithi046 bash[16275]: audit 2024-02-23T00:27:24.453307+0000 mon.smithi046 (mon.0) 65 : audit [INF] from='client.? 172.21.15.46:0/1231750867' entity='client.admin' 2024-02-23T00:27:26.991 INFO:teuthology.orchestra.run.smithi046.stderr:Enabling the dashboard module... 2024-02-23T00:27:27.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:27 smithi046 bash[16275]: cluster 2024-02-23T00:27:26.100498+0000 mgr.smithi046.lplrtl (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:27.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:27 smithi046 bash[16275]: audit 2024-02-23T00:27:26.462000+0000 mon.smithi046 (mon.0) 66 : audit [INF] from='client.? 172.21.15.46:0/1436127569' entity='client.admin' 2024-02-23T00:27:28.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:28 smithi046 bash[16275]: audit 2024-02-23T00:27:28.445765+0000 mon.smithi046 (mon.0) 67 : audit [INF] from='client.? 172.21.15.46:0/1115848217' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-23T00:27:29.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:29 smithi046 bash[16275]: audit 2024-02-23T00:27:28.469471+0000 mon.smithi046 (mon.0) 68 : audit [INF] from='client.? 172.21.15.46:0/1115848217' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-23T00:27:29.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:29 smithi046 bash[16275]: cluster 2024-02-23T00:27:28.469613+0000 mon.smithi046 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi046.lplrtl(active, since 32s) 2024-02-23T00:27:30.790 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:27:30.790 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-23T00:27:30.790 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "available": true, 2024-02-23T00:27:30.791 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "active_name": "smithi046.lplrtl", 2024-02-23T00:27:30.791 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-23T00:27:30.791 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:27:31.234 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:30 smithi046 bash[16275]: audit 2024-02-23T00:27:30.787673+0000 mon.smithi046 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.46:0/3265191123' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-23T00:27:31.344 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for the mgr to restart... 2024-02-23T00:27:31.344 INFO:teuthology.orchestra.run.smithi046.stderr:Waiting for mgr epoch 9... 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: cluster 2024-02-23T00:27:35.112832+0000 mon.smithi046 (mon.0) 71 : cluster [INF] Active manager daemon smithi046.lplrtl restarted 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: cluster 2024-02-23T00:27:35.113127+0000 mon.smithi046 (mon.0) 72 : cluster [INF] Activating manager daemon smithi046.lplrtl 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: cluster 2024-02-23T00:27:35.118539+0000 mon.smithi046 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: cluster 2024-02-23T00:27:35.118776+0000 mon.smithi046 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi046.lplrtl(active, starting, since 0.00576501s) 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: audit 2024-02-23T00:27:35.120834+0000 mon.smithi046 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: audit 2024-02-23T00:27:35.122815+0000 mon.smithi046 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi046.lplrtl", "id": "smithi046.lplrtl"}]: dispatch 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: audit 2024-02-23T00:27:35.124021+0000 mon.smithi046 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: audit 2024-02-23T00:27:35.124458+0000 mon.smithi046 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-23T00:27:35.389 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: audit 2024-02-23T00:27:35.124844+0000 mon.smithi046 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-23T00:27:35.390 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:35 smithi046 bash[16275]: cluster 2024-02-23T00:27:35.129333+0000 mon.smithi046 (mon.0) 80 : cluster [INF] Manager daemon smithi046.lplrtl is now available 2024-02-23T00:27:36.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: { 2024-02-23T00:27:36.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-23T00:27:36.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: "initialized": true 2024-02-23T00:27:36.144 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: } 2024-02-23T00:27:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:36 smithi046 bash[16275]: audit 2024-02-23T00:27:35.272774+0000 mon.smithi046 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:27:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:36 smithi046 bash[16275]: audit 2024-02-23T00:27:35.275797+0000 mon.smithi046 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:27:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:36 smithi046 bash[16275]: audit 2024-02-23T00:27:35.330991+0000 mon.smithi046 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/mirror_snapshot_schedule"}]: dispatch 2024-02-23T00:27:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:36 smithi046 bash[16275]: audit 2024-02-23T00:27:35.335617+0000 mon.smithi046 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/trash_purge_schedule"}]: dispatch 2024-02-23T00:27:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:36 smithi046 bash[16275]: cluster 2024-02-23T00:27:36.122854+0000 mon.smithi046 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi046.lplrtl(active, since 1.00981s) 2024-02-23T00:27:36.918 INFO:teuthology.orchestra.run.smithi046.stderr:mgr epoch 9 is available 2024-02-23T00:27:36.918 INFO:teuthology.orchestra.run.smithi046.stderr:Generating a dashboard self-signed certificate... 2024-02-23T00:27:37.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:37 smithi046 bash[16275]: audit 2024-02-23T00:27:36.122772+0000 mgr.smithi046.lplrtl (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-23T00:27:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:37 smithi046 bash[16275]: audit 2024-02-23T00:27:36.141442+0000 mgr.smithi046.lplrtl (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-23T00:27:38.423 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-23T00:27:38.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:38 smithi046 bash[16275]: cluster 2024-02-23T00:27:37.172758+0000 mon.smithi046 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi046.lplrtl(active, since 2s) 2024-02-23T00:27:38.948 INFO:teuthology.orchestra.run.smithi046.stderr:Creating initial admin user... 2024-02-23T00:27:39.708 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:39 smithi046 bash[16275]: audit 2024-02-23T00:27:38.327410+0000 mgr.smithi046.lplrtl (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:39.708 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:39 smithi046 bash[16275]: audit 2024-02-23T00:27:38.416231+0000 mon.smithi046 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:39.708 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:39 smithi046 bash[16275]: audit 2024-02-23T00:27:38.420474+0000 mon.smithi046 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:40.606 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$QnuBJseqCdswnZxG5gTazuRdAXFs0CnlzlsZ0ZCyEHU3xtYjeXYyG", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1708648060, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-23T00:27:40.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:40 smithi046 bash[16275]: audit 2024-02-23T00:27:40.339599+0000 mgr.smithi046.lplrtl (mgr.14156) 4 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:41.213 INFO:teuthology.orchestra.run.smithi046.stderr:Fetching dashboard port number... 2024-02-23T00:27:41.940 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:41 smithi046 bash[16275]: audit 2024-02-23T00:27:40.604395+0000 mon.smithi046 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:42.547 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: 8443 2024-02-23T00:27:42.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:42 smithi046 bash[16275]: cluster 2024-02-23T00:27:41.612135+0000 mon.smithi046 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi046.lplrtl(active, since 6s) 2024-02-23T00:27:42.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:42 smithi046 bash[16275]: audit 2024-02-23T00:27:42.292594+0000 mon.smithi046 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:42.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:42 smithi046 bash[16275]: audit 2024-02-23T00:27:42.545192+0000 mon.smithi046 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.46:0/1681270834' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-23T00:27:43.121 INFO:teuthology.orchestra.run.smithi046.stderr:firewalld does not appear to be present 2024-02-23T00:27:43.121 INFO:teuthology.orchestra.run.smithi046.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr:Ceph Dashboard is now available at: 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr: URL: https://smithi046.front.sepia.ceph.com:8443/ 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr: User: admin 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr: Password: 9ejhlhmn5q 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:43.125 INFO:teuthology.orchestra.run.smithi046.stderr:Enabling autotune for osd_memory_target 2024-02-23T00:27:46.537 INFO:teuthology.orchestra.run.smithi046.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr:Or, if you are only running a single cluster on this host: 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.067 INFO:teuthology.orchestra.run.smithi046.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: ceph telemetry on 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr:For more information see: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:27:47.068 INFO:teuthology.orchestra.run.smithi046.stderr:Bootstrap complete. 2024-02-23T00:27:47.108 INFO:tasks.cephadm:Fetching config... 2024-02-23T00:27:47.109 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:27:47.109 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-23T00:27:47.115 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-23T00:27:47.115 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:27:47.115 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-23T00:27:47.166 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-23T00:27:47.166 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:27:47.166 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/keyring of=/dev/stdout 2024-02-23T00:27:47.221 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-23T00:27:47.221 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:27:47.221 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-23T00:27:47.271 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-23T00:27:47.272 DEBUG:teuthology.orchestra.run.smithi046:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCn80n9t4G80sJ/Vuop5Ltza2177IGIOzFj9+Nm9GP4xb3yaCkRzm6euTjcm194zBiI5dyvqpNdmeN7yyPNm45xx8u/u1jKAvxpnLWZIbArBX/XJ7LkpTDTssrWw7s91XJOsOT/Rnaxtp7+YoXIfcXw+Pc8GzrPHu+YQLUm7bf7BMCoJsS+PQ7RbCB+iNwQ+4acScIZj6TRfsmvtYweSVlFjAm7aNe1eovgywRwAnMU2m7oO56ypBCEaPGcg90KiOUlrPuCIS38Cy/8Z1RIhmF6a6VGwMVuFsl/5mx3bHFpEfHGn50+HWHnzamxTdW/D7oCWXHR63TCzg8pYlhLAe7Rmw6QqTtmFho7N2xKilagf17VGSGa7XcSq3LyrKTjVemkpOpJz750orZrZp5IyCYbJ3cNtUVbeo/x3eZm+rfyUOjcOHCRW3WsfHXGmc9c9HuB6OJvJPBw5Ld8/QUoQFSzTLVrpHT/Jw6gyReF8pd2HcHkuXyDVGtiuK9Ead6QVzM= ceph-1abddab2-d1e2-11ee-95c0-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-23T00:27:47.339 INFO:teuthology.orchestra.run.smithi046.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCn80n9t4G80sJ/Vuop5Ltza2177IGIOzFj9+Nm9GP4xb3yaCkRzm6euTjcm194zBiI5dyvqpNdmeN7yyPNm45xx8u/u1jKAvxpnLWZIbArBX/XJ7LkpTDTssrWw7s91XJOsOT/Rnaxtp7+YoXIfcXw+Pc8GzrPHu+YQLUm7bf7BMCoJsS+PQ7RbCB+iNwQ+4acScIZj6TRfsmvtYweSVlFjAm7aNe1eovgywRwAnMU2m7oO56ypBCEaPGcg90KiOUlrPuCIS38Cy/8Z1RIhmF6a6VGwMVuFsl/5mx3bHFpEfHGn50+HWHnzamxTdW/D7oCWXHR63TCzg8pYlhLAe7Rmw6QqTtmFho7N2xKilagf17VGSGa7XcSq3LyrKTjVemkpOpJz750orZrZp5IyCYbJ3cNtUVbeo/x3eZm+rfyUOjcOHCRW3WsfHXGmc9c9HuB6OJvJPBw5Ld8/QUoQFSzTLVrpHT/Jw6gyReF8pd2HcHkuXyDVGtiuK9Ead6QVzM= ceph-1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:27:47.349 DEBUG:teuthology.orchestra.run.smithi142:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCn80n9t4G80sJ/Vuop5Ltza2177IGIOzFj9+Nm9GP4xb3yaCkRzm6euTjcm194zBiI5dyvqpNdmeN7yyPNm45xx8u/u1jKAvxpnLWZIbArBX/XJ7LkpTDTssrWw7s91XJOsOT/Rnaxtp7+YoXIfcXw+Pc8GzrPHu+YQLUm7bf7BMCoJsS+PQ7RbCB+iNwQ+4acScIZj6TRfsmvtYweSVlFjAm7aNe1eovgywRwAnMU2m7oO56ypBCEaPGcg90KiOUlrPuCIS38Cy/8Z1RIhmF6a6VGwMVuFsl/5mx3bHFpEfHGn50+HWHnzamxTdW/D7oCWXHR63TCzg8pYlhLAe7Rmw6QqTtmFho7N2xKilagf17VGSGa7XcSq3LyrKTjVemkpOpJz750orZrZp5IyCYbJ3cNtUVbeo/x3eZm+rfyUOjcOHCRW3WsfHXGmc9c9HuB6OJvJPBw5Ld8/QUoQFSzTLVrpHT/Jw6gyReF8pd2HcHkuXyDVGtiuK9Ead6QVzM= ceph-1abddab2-d1e2-11ee-95c0-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-23T00:27:47.372 INFO:teuthology.orchestra.run.smithi142.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCn80n9t4G80sJ/Vuop5Ltza2177IGIOzFj9+Nm9GP4xb3yaCkRzm6euTjcm194zBiI5dyvqpNdmeN7yyPNm45xx8u/u1jKAvxpnLWZIbArBX/XJ7LkpTDTssrWw7s91XJOsOT/Rnaxtp7+YoXIfcXw+Pc8GzrPHu+YQLUm7bf7BMCoJsS+PQ7RbCB+iNwQ+4acScIZj6TRfsmvtYweSVlFjAm7aNe1eovgywRwAnMU2m7oO56ypBCEaPGcg90KiOUlrPuCIS38Cy/8Z1RIhmF6a6VGwMVuFsl/5mx3bHFpEfHGn50+HWHnzamxTdW/D7oCWXHR63TCzg8pYlhLAe7Rmw6QqTtmFho7N2xKilagf17VGSGa7XcSq3LyrKTjVemkpOpJz750orZrZp5IyCYbJ3cNtUVbeo/x3eZm+rfyUOjcOHCRW3WsfHXGmc9c9HuB6OJvJPBw5Ld8/QUoQFSzTLVrpHT/Jw6gyReF8pd2HcHkuXyDVGtiuK9Ead6QVzM= ceph-1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:27:47.383 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-23T00:27:47.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:47 smithi046 bash[16275]: audit 2024-02-23T00:27:46.531584+0000 mon.smithi046 (mon.0) 93 : audit [INF] from='client.? 172.21.15.46:0/448104119' entity='client.admin' 2024-02-23T00:27:52.129 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-23T00:27:52.129 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-23T00:27:52.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:52 smithi046 bash[16275]: audit 2024-02-23T00:27:51.426200+0000 mon.smithi046 (mon.0) 94 : audit [INF] from='client.? 172.21.15.46:0/842141837' entity='client.admin' 2024-02-23T00:27:55.453 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:55 smithi046 bash[16275]: audit 2024-02-23T00:27:54.326345+0000 mon.smithi046 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:55 smithi046 bash[16275]: audit 2024-02-23T00:27:54.634358+0000 mon.smithi046 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi046", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:27:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:55 smithi046 bash[16275]: audit 2024-02-23T00:27:54.639996+0000 mon.smithi046 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:55 smithi046 bash[16275]: audit 2024-02-23T00:27:55.122509+0000 mon.smithi046 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:27:55.793 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi142 2024-02-23T00:27:55.793 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:27:55.793 DEBUG:teuthology.orchestra.run.smithi142:> dd of=/etc/ceph/ceph.conf 2024-02-23T00:27:55.801 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:27:55.801 DEBUG:teuthology.orchestra.run.smithi142:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-23T00:27:55.850 INFO:tasks.cephadm:Adding host smithi142 to orchestrator... 2024-02-23T00:27:55.850 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch host add smithi142 2024-02-23T00:27:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:56 smithi046 bash[16275]: cephadm 2024-02-23T00:27:54.656130+0000 mgr.smithi046.lplrtl (mgr.14156) 5 : cephadm [INF] Deploying daemon alertmanager.smithi046 on smithi046 2024-02-23T00:27:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:56 smithi046 bash[16275]: audit 2024-02-23T00:27:55.117164+0000 mgr.smithi046.lplrtl (mgr.14156) 6 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:27:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:56 smithi046 bash[16275]: cluster 2024-02-23T00:27:55.125547+0000 mgr.smithi046.lplrtl (mgr.14156) 7 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:27:58.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:27:58 smithi046 bash[16275]: cluster 2024-02-23T00:27:57.125958+0000 mgr.smithi046.lplrtl (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:00.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:00 smithi046 bash[16275]: cluster 2024-02-23T00:27:59.126452+0000 mgr.smithi046.lplrtl (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:02 smithi046 bash[16275]: cluster 2024-02-23T00:28:01.126955+0000 mgr.smithi046.lplrtl (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:02 smithi046 bash[16275]: audit 2024-02-23T00:28:02.206037+0000 mon.smithi046 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:02 smithi046 bash[16275]: audit 2024-02-23T00:28:02.210330+0000 mon.smithi046 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi046", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:28:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:02 smithi046 bash[16275]: audit 2024-02-23T00:28:02.212794+0000 mon.smithi046 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi046", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-23T00:28:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:02 smithi046 bash[16275]: audit 2024-02-23T00:28:02.213905+0000 mon.smithi046 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:28:03.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:03 smithi046 bash[16275]: cephadm 2024-02-23T00:28:02.214699+0000 mgr.smithi046.lplrtl (mgr.14156) 11 : cephadm [INF] Deploying daemon crash.smithi046 on smithi046 2024-02-23T00:28:04.678 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:04 smithi046 bash[16275]: cluster 2024-02-23T00:28:03.127385+0000 mgr.smithi046.lplrtl (mgr.14156) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:05.903 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.715098+0000 mon.smithi046 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:05.903 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.930369+0000 mon.smithi046 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:05.903 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.933198+0000 mon.smithi046 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:05.903 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.935752+0000 mon.smithi046 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-23T00:28:05.904 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.936267+0000 mgr.smithi046.lplrtl (mgr.14156) 13 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-23T00:28:05.904 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:04.942015+0000 mon.smithi046 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:05.904 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: cephadm 2024-02-23T00:28:04.962042+0000 mgr.smithi046.lplrtl (mgr.14156) 14 : cephadm [INF] Deploying daemon grafana.smithi046 on smithi046 2024-02-23T00:28:05.904 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: cluster 2024-02-23T00:28:05.127814+0000 mgr.smithi046.lplrtl (mgr.14156) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:05.904 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:05 smithi046 bash[16275]: audit 2024-02-23T00:28:05.334451+0000 mon.smithi046 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:08.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:08 smithi046 bash[16275]: cluster 2024-02-23T00:28:07.128284+0000 mgr.smithi046.lplrtl (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:10.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:10 smithi046 bash[16275]: cluster 2024-02-23T00:28:09.128782+0000 mgr.smithi046.lplrtl (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:12.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:12 smithi046 bash[16275]: cluster 2024-02-23T00:28:11.129234+0000 mgr.smithi046.lplrtl (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:14 smithi046 bash[16275]: cluster 2024-02-23T00:28:13.129690+0000 mgr.smithi046.lplrtl (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:16.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:16 smithi046 bash[16275]: cluster 2024-02-23T00:28:15.130055+0000 mgr.smithi046.lplrtl (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:18.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:18 smithi046 bash[16275]: cluster 2024-02-23T00:28:17.130453+0000 mgr.smithi046.lplrtl (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:20.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:20 smithi046 bash[16275]: cluster 2024-02-23T00:28:19.130912+0000 mgr.smithi046.lplrtl (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:21.004 INFO:teuthology.orchestra.run.smithi142.stdout:Added host 'smithi142' with addr '172.21.15.142' 2024-02-23T00:28:21.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:21 smithi046 bash[16275]: audit 2024-02-23T00:28:20.160529+0000 mgr.smithi046.lplrtl (mgr.14156) 23 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi142", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:28:21.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:21 smithi046 bash[16275]: audit 2024-02-23T00:28:20.999215+0000 mon.smithi046 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:21.673 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch host ls --format=json 2024-02-23T00:28:22.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:22 smithi046 bash[16275]: cephadm 2024-02-23T00:28:21.000081+0000 mgr.smithi046.lplrtl (mgr.14156) 24 : cephadm [INF] Added host smithi142 2024-02-23T00:28:22.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:22 smithi046 bash[16275]: cluster 2024-02-23T00:28:21.131386+0000 mgr.smithi046.lplrtl (mgr.14156) 25 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:24.421 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-02-23T00:28:24.421 INFO:teuthology.orchestra.run.smithi142.stdout:[{"addr": "172.21.15.46", "hostname": "smithi046", "labels": [], "status": ""}, {"addr": "172.21.15.142", "hostname": "smithi142", "labels": [], "status": ""}] 2024-02-23T00:28:24.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:24 smithi046 bash[16275]: cluster 2024-02-23T00:28:23.131858+0000 mgr.smithi046.lplrtl (mgr.14156) 26 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:24.979 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-23T00:28:24.979 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd crush tunables default 2024-02-23T00:28:25.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:25 smithi046 bash[16275]: audit 2024-02-23T00:28:24.417437+0000 mgr.smithi046.lplrtl (mgr.14156) 27 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:28:26.458 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:26 smithi046 bash[16275]: cluster 2024-02-23T00:28:25.132291+0000 mgr.smithi046.lplrtl (mgr.14156) 28 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:28.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:27 smithi046 bash[16275]: audit 2024-02-23T00:28:26.792578+0000 mon.smithi046 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:28.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:27 smithi046 bash[16275]: cephadm 2024-02-23T00:28:26.798234+0000 mgr.smithi046.lplrtl (mgr.14156) 29 : cephadm [INF] Deploying daemon node-exporter.smithi046 on smithi046 2024-02-23T00:28:28.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:27 smithi046 bash[16275]: cluster 2024-02-23T00:28:27.132677+0000 mgr.smithi046.lplrtl (mgr.14156) 30 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:28.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:27 smithi046 bash[16275]: audit 2024-02-23T00:28:27.401317+0000 mon.smithi046 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:28.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:27 smithi046 bash[16275]: audit 2024-02-23T00:28:27.406643+0000 mon.smithi046 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-23T00:28:29.643 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:29 smithi046 bash[16275]: audit 2024-02-23T00:28:28.404963+0000 mon.smithi046 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.46:0/3843517955' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-23T00:28:29.643 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:29 smithi046 bash[16275]: cluster 2024-02-23T00:28:28.405067+0000 mon.smithi046 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi046.lplrtl(active, since 53s) 2024-02-23T00:28:30.415 INFO:teuthology.orchestra.run.smithi046.stderr:adjusted tunables profile to default 2024-02-23T00:28:30.503 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:30 smithi046 bash[16275]: audit 2024-02-23T00:28:29.412892+0000 mon.smithi046 (mon.0) 115 : audit [INF] from='client.? 172.21.15.46:0/905248132' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-23T00:28:31.362 INFO:tasks.cephadm:Adding mon.smithi046 on smithi046 2024-02-23T00:28:31.362 INFO:tasks.cephadm:Adding mon.smithi142 on smithi142 2024-02-23T00:28:31.362 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch apply mon '2;smithi046:172.21.15.46=smithi046;smithi142:172.21.15.142=smithi142' 2024-02-23T00:28:31.640 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:31 smithi046 bash[16275]: audit 2024-02-23T00:28:30.408251+0000 mon.smithi046 (mon.0) 116 : audit [INF] from='client.? 172.21.15.46:0/905248132' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-23T00:28:31.640 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:31 smithi046 bash[16275]: cluster 2024-02-23T00:28:30.408394+0000 mon.smithi046 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-23T00:28:35.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: cluster 2024-02-23T00:28:35.072947+0000 mon.smithi046 (mon.0) 118 : cluster [INF] Active manager daemon smithi046.lplrtl restarted 2024-02-23T00:28:35.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: cluster 2024-02-23T00:28:35.073423+0000 mon.smithi046 (mon.0) 119 : cluster [INF] Activating manager daemon smithi046.lplrtl 2024-02-23T00:28:35.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: cluster 2024-02-23T00:28:35.079129+0000 mon.smithi046 (mon.0) 120 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-23T00:28:35.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: cluster 2024-02-23T00:28:35.079364+0000 mon.smithi046 (mon.0) 121 : cluster [DBG] mgrmap e15: smithi046.lplrtl(active, starting, since 0.00611071s) 2024-02-23T00:28:35.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: audit 2024-02-23T00:28:35.081178+0000 mon.smithi046 (mon.0) 122 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:28:35.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: audit 2024-02-23T00:28:35.083052+0000 mon.smithi046 (mon.0) 123 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi046.lplrtl", "id": "smithi046.lplrtl"}]: dispatch 2024-02-23T00:28:35.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: audit 2024-02-23T00:28:35.084015+0000 mon.smithi046 (mon.0) 124 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-23T00:28:35.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: audit 2024-02-23T00:28:35.084347+0000 mon.smithi046 (mon.0) 125 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-23T00:28:35.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: audit 2024-02-23T00:28:35.084622+0000 mon.smithi046 (mon.0) 126 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-23T00:28:35.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:35 smithi046 bash[16275]: cluster 2024-02-23T00:28:35.087865+0000 mon.smithi046 (mon.0) 127 : cluster [INF] Manager daemon smithi046.lplrtl is now available 2024-02-23T00:28:36.098 INFO:teuthology.orchestra.run.smithi142.stdout:Scheduled mon update... 2024-02-23T00:28:36.185 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.233086+0000 mon.smithi046 (mon.0) 128 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:28:36.185 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.235407+0000 mon.smithi046 (mon.0) 129 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:28:36.185 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.285720+0000 mon.smithi046 (mon.0) 130 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:36.186 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.301022+0000 mon.smithi046 (mon.0) 131 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/mirror_snapshot_schedule"}]: dispatch 2024-02-23T00:28:36.186 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.306908+0000 mon.smithi046 (mon.0) 132 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi046.lplrtl/trash_purge_schedule"}]: dispatch 2024-02-23T00:28:36.186 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:35.900889+0000 mon.smithi046 (mon.0) 133 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:36.186 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: cluster 2024-02-23T00:28:36.082567+0000 mon.smithi046 (mon.0) 134 : cluster [DBG] mgrmap e16: smithi046.lplrtl(active, since 1.00931s) 2024-02-23T00:28:36.186 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:36 smithi046 bash[16275]: audit 2024-02-23T00:28:36.095566+0000 mon.smithi046 (mon.0) 135 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:36.723 DEBUG:teuthology.orchestra.run.smithi142:mon.smithi142> sudo journalctl -f -n 0 -u ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi142.service 2024-02-23T00:28:36.725 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-23T00:28:36.725 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-23T00:28:36.946 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-02-23T00:28:37.281 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:37 smithi046 bash[16275]: cephadm 2024-02-23T00:28:36.090959+0000 mgr.smithi046.lplrtl (mgr.14184) 2 : cephadm [INF] Saving service mon spec with placement smithi046:172.21.15.46=smithi046;smithi142:172.21.15.142=smithi142;count:2 2024-02-23T00:28:38.318 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:38 smithi046 bash[16275]: cluster 2024-02-23T00:28:37.133539+0000 mon.smithi046 (mon.0) 136 : cluster [DBG] mgrmap e17: smithi046.lplrtl(active, since 2s) 2024-02-23T00:28:38.318 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:38 smithi046 bash[16275]: audit 2024-02-23T00:28:37.708187+0000 mon.smithi046 (mon.0) 137 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:39.866 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-02-23T00:28:39.866 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":1,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","modified":"2024-02-23T00:26:24.731059Z","created":"2024-02-23T00:26:24.731059Z","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":"smithi046","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:3300","nonce":0},{"type":"v1","addr":"172.21.15.46:6789","nonce":0}]},"addr":"172.21.15.46:6789/0","public_addr":"172.21.15.46:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-23T00:28:39.869 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 1 2024-02-23T00:28:39.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:39 smithi046 bash[16275]: audit 2024-02-23T00:28:39.863467+0000 mon.smithi046 (mon.0) 138 : audit [DBG] from='client.? 172.21.15.142:0/3422128800' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-23T00:28:41.677 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-23T00:28:41.677 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-23T00:28:42.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:42 smithi046 bash[16275]: audit 2024-02-23T00:28:41.354662+0000 mon.smithi046 (mon.0) 139 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:42.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:42 smithi046 bash[16275]: audit 2024-02-23T00:28:41.641098+0000 mon.smithi046 (mon.0) 140 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi046", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:28:45.095 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-02-23T00:28:45.095 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":1,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","modified":"2024-02-23T00:26:24.731059Z","created":"2024-02-23T00:26:24.731059Z","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":"smithi046","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:3300","nonce":0},{"type":"v1","addr":"172.21.15.46:6789","nonce":0}]},"addr":"172.21.15.46:6789/0","public_addr":"172.21.15.46:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-23T00:28:45.098 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 1 2024-02-23T00:28:45.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.184564+0000 mon.smithi046 (mon.0) 141 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.514816+0000 mon.smithi046 (mon.0) 142 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.516756+0000 mon.smithi046 (mon.0) 143 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi142", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.518712+0000 mon.smithi046 (mon.0) 144 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.520442+0000 mon.smithi046 (mon.0) 145 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.577469+0000 mon.smithi046 (mon.0) 146 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.598993+0000 mon.smithi046 (mon.0) 147 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.605134+0000 mon.smithi046 (mon.0) 148 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.609398+0000 mon.smithi046 (mon.0) 149 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.613485+0000 mon.smithi046 (mon.0) 150 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:44.615306+0000 mon.smithi046 (mon.0) 151 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:28:45.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:45 smithi046 bash[16275]: audit 2024-02-23T00:28:45.091831+0000 mon.smithi046 (mon.0) 152 : audit [DBG] from='client.? 172.21.15.142:0/2999693281' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-23T00:28:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:46 smithi046 bash[16275]: cephadm 2024-02-23T00:28:44.523467+0000 mgr.smithi046.lplrtl (mgr.14184) 3 : cephadm [INF] Updating smithi046:/etc/ceph/ceph.conf 2024-02-23T00:28:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:46 smithi046 bash[16275]: cephadm 2024-02-23T00:28:44.524166+0000 mgr.smithi046.lplrtl (mgr.14184) 4 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-02-23T00:28:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:46 smithi046 bash[16275]: cephadm 2024-02-23T00:28:44.544562+0000 mgr.smithi046.lplrtl (mgr.14184) 5 : cephadm [INF] Updating smithi046:/etc/ceph/ceph.client.admin.keyring 2024-02-23T00:28:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:46 smithi046 bash[16275]: cephadm 2024-02-23T00:28:44.550844+0000 mgr.smithi046.lplrtl (mgr.14184) 6 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.client.admin.keyring 2024-02-23T00:28:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:46 smithi046 bash[16275]: cephadm 2024-02-23T00:28:44.616946+0000 mgr.smithi046.lplrtl (mgr.14184) 7 : cephadm [INF] Deploying daemon crash.smithi142 on smithi142 2024-02-23T00:28:46.866 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-23T00:28:46.866 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-23T00:28:48.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: audit 2024-02-23T00:28:47.407414+0000 mon.smithi046 (mon.0) 153 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:48.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: audit 2024-02-23T00:28:47.413137+0000 mon.smithi046 (mon.0) 154 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.hrzezs", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-23T00:28:48.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: audit 2024-02-23T00:28:47.417883+0000 mon.smithi046 (mon.0) 155 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.hrzezs", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-23T00:28:48.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: audit 2024-02-23T00:28:47.419553+0000 mon.smithi046 (mon.0) 156 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-23T00:28:48.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: audit 2024-02-23T00:28:47.421229+0000 mon.smithi046 (mon.0) 157 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:28:48.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:48 smithi046 bash[16275]: cephadm 2024-02-23T00:28:47.422521+0000 mgr.smithi046.lplrtl (mgr.14184) 8 : cephadm [INF] Deploying daemon mgr.smithi142.hrzezs on smithi142 2024-02-23T00:28:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:51 smithi046 bash[16275]: audit 2024-02-23T00:28:50.293813+0000 mon.smithi046 (mon.0) 158 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:51 smithi046 bash[16275]: audit 2024-02-23T00:28:50.378992+0000 mon.smithi046 (mon.0) 159 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:51 smithi046 bash[16275]: audit 2024-02-23T00:28:50.384050+0000 mon.smithi046 (mon.0) 160 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-23T00:28:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:51 smithi046 bash[16275]: audit 2024-02-23T00:28:50.385629+0000 mon.smithi046 (mon.0) 161 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:28:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:51 smithi046 bash[16275]: cephadm 2024-02-23T00:28:50.387007+0000 mgr.smithi046.lplrtl (mgr.14184) 9 : cephadm [INF] Deploying daemon mon.smithi142 on smithi142 2024-02-23T00:28:51.923 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-02-23T00:28:51.923 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":1,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","modified":"2024-02-23T00:26:24.731059Z","created":"2024-02-23T00:26:24.731059Z","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":"smithi046","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:3300","nonce":0},{"type":"v1","addr":"172.21.15.46:6789","nonce":0}]},"addr":"172.21.15.46:6789/0","public_addr":"172.21.15.46:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-23T00:28:51.926 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 1 2024-02-23T00:28:52.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:52 smithi046 bash[16275]: audit 2024-02-23T00:28:51.920166+0000 mon.smithi046 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.142:0/1814571615' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-23T00:28:53.641 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-23T00:28:53.641 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph mon dump -f json 2024-02-23T00:28:55.390 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:55 smithi142 systemd[1]: Started Ceph mon.smithi142 for 1abddab2-d1e2-11ee-95c0-87774f69a715. 2024-02-23T00:28:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:56 smithi046 bash[16275]: cluster 2024-02-23T00:28:55.085968+0000 mgr.smithi046.lplrtl (mgr.14184) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:28:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:56 smithi046 bash[16275]: audit 2024-02-23T00:28:55.305731+0000 mon.smithi046 (mon.0) 163 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:56 smithi046 bash[16275]: audit 2024-02-23T00:28:55.404561+0000 mon.smithi046 (mon.0) 164 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:56 smithi046 bash[16275]: cephadm 2024-02-23T00:28:55.408543+0000 mgr.smithi046.lplrtl (mgr.14184) 11 : cephadm [INF] Deploying daemon node-exporter.smithi142 on smithi142 2024-02-23T00:28:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:56 smithi046 bash[16275]: audit 2024-02-23T00:28:55.970952+0000 mon.smithi046 (mon.0) 165 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:28:57.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:28:57 smithi046 bash[16275]: cephadm 2024-02-23T00:28:55.993913+0000 mgr.smithi046.lplrtl (mgr.14184) 12 : cephadm [INF] Deploying daemon prometheus.smithi142 on smithi142 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.927+0000 7f44d19d6880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.927+0000 7f44d19d6880 0 ceph version 16.2.14-550-geb66ed92 (eb66ed921e744301e6863be6353618d63967ea59) pacific (stable), process ceph-mon, pid 8 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.927+0000 7f44d19d6880 0 pidfile_write: ignore empty --pid-file 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 0 load: jerasure load: lrc load: isa 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: RocksDB version: 6.8.1 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Compile date Feb 20 2024 2024-02-23T00:28:58.149 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: DB SUMMARY 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: CURRENT file: CURRENT 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi142/store.db dir, Total Num: 0, files: 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi142/store.db: 000003.log size: 511 ; 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.error_if_exists: 0 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.create_if_missing: 0 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.paranoid_checks: 1 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.env: 0x559b8d0f1080 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.fs: Posix File System 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.info_log: 0x559b8f1fa560 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.statistics: (nil) 2024-02-23T00:28:58.150 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.use_fsync: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_log_file_size: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.allow_fallocate: 1 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.use_direct_reads: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.db_log_dir: 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi142/store.db 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-23T00:28:58.151 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_subcompactions: 1 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_background_flushes: -1 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.write_buffer_manager: 0x559b8fe6c450 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-23T00:28:58.152 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-23T00:28:58.153 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-23T00:28:58.153 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-23T00:28:58.154 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-23T00:28:58.154 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.unordered_write: 0 2024-02-23T00:28:58.154 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-23T00:28:58.154 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-23T00:28:58.154 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.row_cache: None 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.wal_filter: None 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.preserve_deletes: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.two_write_queues: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.atomic_flush: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.log_readahead_size: 0 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-23T00:28:58.155 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_background_jobs: 2 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_background_compactions: -1 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_open_files: -1 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-23T00:28:58.156 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Compression algorithms supported: 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kZSTD supported: 0 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kXpressCompression supported: 0 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kLZ4Compression supported: 1 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kBZip2Compression supported: 0 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kZlibCompression supported: 1 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: kSnappyCompression supported: 1 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi142/store.db/MANIFEST-000001 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.merge_operator: 2024-02-23T00:28:58.157 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_filter: None 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559b8f19dd10) 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: cache_index_and_filter_blocks: 1 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: pin_top_level_index_and_filter: 1 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: index_type: 0 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: data_block_index_type: 0 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: index_shortening: 1 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: data_block_hash_table_util_ratio: 0.750000 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: hash_index_allow_collision: 1 2024-02-23T00:28:58.158 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: checksum: 1 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: no_block_cache: 0 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_cache: 0x559b8f1d4f10 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_cache_name: BinnedLRUCache 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_cache_options: 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: capacity : 536870912 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: num_shard_bits : 4 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: strict_capacity_limit : 0 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: high_pri_pool_ratio: 0.000 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_cache_compressed: (nil) 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: persistent_cache: (nil) 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_size: 4096 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_size_deviation: 10 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_restart_interval: 16 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: index_block_restart_interval: 1 2024-02-23T00:28:58.159 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: metadata_block_size: 4096 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: partition_filters: 0 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: use_delta_encoding: 1 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: whole_key_filtering: 1 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: verify_compression: 0 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: read_amp_bytes_per_bit: 0 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: format_version: 2 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: enable_index_compression: 1 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: block_align: 0 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression: NoCompression 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-23T00:28:58.160 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.num_levels: 7 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-23T00:28:58.161 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-23T00:28:58.162 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-23T00:28:58.163 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.table_properties_collectors: 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.inplace_update_support: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.bloom_locality: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.max_successive_merges: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-23T00:28:58.164 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.ttl: 2592000 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi142/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-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708648137935774, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.931+0000 7f44d19d6880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.935+0000 7f44d19d6880 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-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.935+0000 7f44d19d6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708648137936520, "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": 1708648137, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.935+0000 7f44d19d6880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.935+0000 7f44d19d6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1708648137939576, "job": 1, "event": "recovery_finished"} 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44d19d6880 4 rocksdb: DB pointer 0x559b8f29d800 2024-02-23T00:28:58.165 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44d19d6880 0 mon.smithi142 does not exist in monmap, will attempt to join an existing cluster 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44d19d6880 0 using public_addr v2:172.21.15.142:0/0 -> [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44d19d6880 0 starting mon.smithi142 rank -1 at public addrs [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] at bind addrs [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi142 fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44b87c8700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.939+0000 7f44b87c8700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** DB Stats ** 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** Compaction Stats [default] ** 2024-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.166 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** Compaction Stats [default] ** 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:28:58.167 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Cumulative compaction: 0.00 GB write, 0.17 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Interval compaction: 0.00 GB write, 0.17 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** Compaction Stats [default] ** 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** Compaction Stats [default] ** 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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.0 0.00 0.00 1 0.001 0 0 2024-02-23T00:28:58.168 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(Total Files): cumulative 0, interval 0 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: AddFile(Keys): cumulative 0, interval 0 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Cumulative compaction: 0.00 GB write, 0.17 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: ** File Read Latency Histogram By Level [default] ** 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.943+0000 7f44d19d6880 1 mon.smithi142@-1(???) e0 preinit fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 0 mon.smithi142@-1(synchronizing).mds e1 new map 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 0 mon.smithi142@-1(synchronizing).mds e1 print_map 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: e1 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-23T00:28:58.169 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 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-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: legacy client fscid: -1 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: No filesystems configured 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.983+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.987+0000 7f44bafcd700 0 mon.smithi142@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.987+0000 7f44bafcd700 0 mon.smithi142@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-23T00:28:58.170 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: cephadm 2024-02-23T00:28:55.993913+0000 mgr.smithi046.lplrtl (mgr.14184) 12 : cephadm [INF] Deploying daemon prometheus.smithi142 on smithi142 2024-02-23T00:28:58.171 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:28:57 smithi142 bash[20802]: debug 2024-02-23T00:28:57.987+0000 7f44bafcd700 1 mon.smithi142@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-23T00:29:03.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:28:58.007943+0000 mon.smithi046 (mon.0) 167 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:29:03.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:28:58.008386+0000 mon.smithi046 (mon.0) 168 : cluster [INF] mon.smithi046 calling monitor election 2024-02-23T00:29:03.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:28:58.010559+0000 mon.smithi046 (mon.0) 169 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:28:58.686223+0000 mon.smithi046 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.hrzezs/crt"}]: dispatch 2024-02-23T00:29:03.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:28:59.000448+0000 mon.smithi046 (mon.0) 171 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:28:59.086881+0000 mgr.smithi046.lplrtl (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:00.000512+0000 mon.smithi046 (mon.0) 172 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:00.003199+0000 mon.smithi142 (mon.1) 1 : cluster [INF] mon.smithi142 calling monitor election 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:01.000532+0000 mon.smithi046 (mon.0) 173 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:01.087258+0000 mgr.smithi046.lplrtl (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:02.000957+0000 mon.smithi046 (mon.0) 174 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:03.001201+0000 mon.smithi046 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.032476+0000 mon.smithi046 (mon.0) 176 : cluster [INF] mon.smithi046 is new leader, mons smithi046,smithi142 in quorum (ranks 0,1) 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.043473+0000 mon.smithi046 (mon.0) 177 : cluster [DBG] monmap e2: 2 mons at {smithi046=[v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0],smithi142=[v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0]} removed_ranks: {} 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.044553+0000 mon.smithi046 (mon.0) 178 : cluster [DBG] fsmap 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.044640+0000 mon.smithi046 (mon.0) 179 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.045040+0000 mon.smithi046 (mon.0) 180 : cluster [DBG] mgrmap e17: smithi046.lplrtl(active, since 27s) 2024-02-23T00:29:03.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.045319+0000 mon.smithi046 (mon.0) 181 : cluster [INF] overall HEALTH_OK 2024-02-23T00:29:03.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.045769+0000 mon.smithi046 (mon.0) 182 : cluster [DBG] Standby manager daemon smithi142.hrzezs started 2024-02-23T00:29:03.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:03.052504+0000 mon.smithi046 (mon.0) 183 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:03.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:03.052913+0000 mon.smithi046 (mon.0) 184 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-23T00:29:03.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:03.055674+0000 mon.smithi046 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.hrzezs/key"}]: dispatch 2024-02-23T00:29:03.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:03 smithi046 bash[16275]: audit 2024-02-23T00:29:03.056688+0000 mon.smithi046 (mon.0) 186 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:28:58.007943+0000 mon.smithi046 (mon.0) 167 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi046"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:28:58.008386+0000 mon.smithi046 (mon.0) 168 : cluster [INF] mon.smithi046 calling monitor election 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:28:58.010559+0000 mon.smithi046 (mon.0) 169 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:28:58.686223+0000 mon.smithi046 (mon.0) 170 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.hrzezs/crt"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:28:59.000448+0000 mon.smithi046 (mon.0) 171 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:28:59.086881+0000 mgr.smithi046.lplrtl (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:00.000512+0000 mon.smithi046 (mon.0) 172 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:00.003199+0000 mon.smithi142 (mon.1) 1 : cluster [INF] mon.smithi142 calling monitor election 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:01.000532+0000 mon.smithi046 (mon.0) 173 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:01.087258+0000 mgr.smithi046.lplrtl (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:02.000957+0000 mon.smithi046 (mon.0) 174 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:03.001201+0000 mon.smithi046 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.032476+0000 mon.smithi046 (mon.0) 176 : cluster [INF] mon.smithi046 is new leader, mons smithi046,smithi142 in quorum (ranks 0,1) 2024-02-23T00:29:03.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.043473+0000 mon.smithi046 (mon.0) 177 : cluster [DBG] monmap e2: 2 mons at {smithi046=[v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0],smithi142=[v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0]} removed_ranks: {} 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.044553+0000 mon.smithi046 (mon.0) 178 : cluster [DBG] fsmap 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.044640+0000 mon.smithi046 (mon.0) 179 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.045040+0000 mon.smithi046 (mon.0) 180 : cluster [DBG] mgrmap e17: smithi046.lplrtl(active, since 27s) 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.045319+0000 mon.smithi046 (mon.0) 181 : cluster [INF] overall HEALTH_OK 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.045769+0000 mon.smithi046 (mon.0) 182 : cluster [DBG] Standby manager daemon smithi142.hrzezs started 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:03.052504+0000 mon.smithi046 (mon.0) 183 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:03.052913+0000 mon.smithi046 (mon.0) 184 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:03.055674+0000 mon.smithi046 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi142.hrzezs/key"}]: dispatch 2024-02-23T00:29:03.514 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:03 smithi142 bash[20802]: audit 2024-02-23T00:29:03.056688+0000 mon.smithi046 (mon.0) 186 : audit [DBG] from='mgr.? 172.21.15.142:0/732994957' entity='mgr.smithi142.hrzezs' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-23T00:29:04.404 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:04 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.087654+0000 mgr.smithi046.lplrtl (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:04.404 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:04 smithi142 bash[20802]: cluster 2024-02-23T00:29:03.114137+0000 mon.smithi046 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi046.lplrtl(active, since 28s), standbys: smithi142.hrzezs 2024-02-23T00:29:04.404 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:04 smithi142 bash[20802]: audit 2024-02-23T00:29:03.114325+0000 mon.smithi046 (mon.0) 188 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi142.hrzezs", "id": "smithi142.hrzezs"}]: dispatch 2024-02-23T00:29:04.404 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:04 smithi142 bash[20802]: audit 2024-02-23T00:29:04.001330+0000 mon.smithi046 (mon.0) 189 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:04.407 INFO:teuthology.orchestra.run.smithi142.stdout: 2024-02-23T00:29:04.407 INFO:teuthology.orchestra.run.smithi142.stdout:{"epoch":2,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","modified":"2024-02-23T00:28:58.002941Z","created":"2024-02-23T00:26:24.731059Z","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":"smithi046","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:3300","nonce":0},{"type":"v1","addr":"172.21.15.46:6789","nonce":0}]},"addr":"172.21.15.46:6789/0","public_addr":"172.21.15.46:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi142","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:3300","nonce":0},{"type":"v1","addr":"172.21.15.142:6789","nonce":0}]},"addr":"172.21.15.142:6789/0","public_addr":"172.21.15.142:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-23T00:29:04.410 INFO:teuthology.orchestra.run.smithi142.stderr:dumped monmap epoch 2 2024-02-23T00:29:04.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:04 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.087654+0000 mgr.smithi046.lplrtl (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:04.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:04 smithi046 bash[16275]: cluster 2024-02-23T00:29:03.114137+0000 mon.smithi046 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi046.lplrtl(active, since 28s), standbys: smithi142.hrzezs 2024-02-23T00:29:04.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:04 smithi046 bash[16275]: audit 2024-02-23T00:29:03.114325+0000 mon.smithi046 (mon.0) 188 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr metadata", "who": "smithi142.hrzezs", "id": "smithi142.hrzezs"}]: dispatch 2024-02-23T00:29:04.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:04 smithi046 bash[16275]: audit 2024-02-23T00:29:04.001330+0000 mon.smithi046 (mon.0) 189 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mon metadata", "id": "smithi142"}]: dispatch 2024-02-23T00:29:05.350 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-23T00:29:05.350 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph config generate-minimal-conf 2024-02-23T00:29:05.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:05 smithi046 bash[16275]: audit 2024-02-23T00:29:04.404350+0000 mon.smithi046 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.142:0/4211883230' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-23T00:29:05.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:05 smithi142 bash[20802]: audit 2024-02-23T00:29:04.404350+0000 mon.smithi046 (mon.0) 190 : audit [DBG] from='client.? 172.21.15.142:0/4211883230' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-23T00:29:06.449 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:06 smithi046 bash[16275]: cluster 2024-02-23T00:29:05.088012+0000 mgr.smithi046.lplrtl (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:06.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:06 smithi142 bash[20802]: cluster 2024-02-23T00:29:05.088012+0000 mgr.smithi046.lplrtl (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:08.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:08 smithi046 bash[16275]: cluster 2024-02-23T00:29:07.088582+0000 mgr.smithi046.lplrtl (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:08.344 INFO:teuthology.orchestra.run.smithi046.stdout:# minimal ceph.conf for 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:29:08.344 INFO:teuthology.orchestra.run.smithi046.stdout:[global] 2024-02-23T00:29:08.344 INFO:teuthology.orchestra.run.smithi046.stdout: fsid = 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:29:08.344 INFO:teuthology.orchestra.run.smithi046.stdout: mon_host = [v2:172.21.15.46:3300/0,v1:172.21.15.46:6789/0] [v2:172.21.15.142:3300/0,v1:172.21.15.142:6789/0] 2024-02-23T00:29:08.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:08 smithi142 bash[20802]: cluster 2024-02-23T00:29:07.088582+0000 mgr.smithi046.lplrtl (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:08.962 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-23T00:29:08.962 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:29:08.962 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/ceph/ceph.conf 2024-02-23T00:29:08.972 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:29:08.972 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-23T00:29:09.026 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:29:09.026 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.conf 2024-02-23T00:29:09.041 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:29:09.041 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-23T00:29:09.104 INFO:tasks.cephadm:Deploying OSDs... 2024-02-23T00:29:09.163 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:29:09.163 DEBUG:teuthology.orchestra.run.smithi046:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:29:09.172 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:09 smithi142 bash[20802]: audit 2024-02-23T00:29:08.341378+0000 mon.smithi046 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.46:0/1905901028' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:09.176 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-23T00:29:09.176 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/nvme1n1 2024-02-23T00:29:09.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:09 smithi046 bash[16275]: audit 2024-02-23T00:29:08.341378+0000 mon.smithi046 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.46:0/1905901028' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:09.236 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/nvme1n1 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:27:49.126054280 +0000 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:25:51.815790552 +0000 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:25:51.815790552 +0000 2024-02-23T00:29:09.237 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:29:09.237 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-23T00:29:09.297 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:29:09.297 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:29:09.297 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000333894 s, 1.5 MB/s 2024-02-23T00:29:09.298 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-23T00:29:09.353 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/nvme2n1 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/nvme2n1 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:27:49.138053995 +0000 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:25:51.931845772 +0000 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:25:51.931845772 +0000 2024-02-23T00:29:09.407 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:29:09.408 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-23T00:29:09.462 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:29:09.463 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:29:09.463 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000347473 s, 1.5 MB/s 2024-02-23T00:29:09.464 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-23T00:29:09.514 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/nvme3n1 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/nvme3n1 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:27:49.150053709 +0000 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:25:52.043899089 +0000 2024-02-23T00:29:09.564 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:25:52.043899089 +0000 2024-02-23T00:29:09.565 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:29:09.565 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-23T00:29:09.617 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:29:09.617 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:29:09.617 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.00034753 s, 1.5 MB/s 2024-02-23T00:29:09.618 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-23T00:29:09.669 DEBUG:teuthology.orchestra.run.smithi046:> stat /dev/nvme4n1 2024-02-23T00:29:09.719 INFO:teuthology.orchestra.run.smithi046.stdout: File: /dev/nvme4n1 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout:Device: 6h/6d Inode: 490 Links: 1 Device type: 103,8 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout:Access: 2024-02-23 00:27:49.162053424 +0000 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout:Modify: 2024-02-23 00:25:52.155952405 +0000 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout:Change: 2024-02-23 00:25:52.155952405 +0000 2024-02-23T00:29:09.720 INFO:teuthology.orchestra.run.smithi046.stdout: Birth: - 2024-02-23T00:29:09.720 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-23T00:29:09.774 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records in 2024-02-23T00:29:09.774 INFO:teuthology.orchestra.run.smithi046.stderr:1+0 records out 2024-02-23T00:29:09.774 INFO:teuthology.orchestra.run.smithi046.stderr:512 bytes copied, 0.000340232 s, 1.5 MB/s 2024-02-23T00:29:09.775 DEBUG:teuthology.orchestra.run.smithi046:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-23T00:29:09.825 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:29:09.825 DEBUG:teuthology.orchestra.run.smithi142:> dd if=/scratch_devs of=/dev/stdout 2024-02-23T00:29:09.831 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-23T00:29:09.831 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme1n1 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme1n1 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:28:42.283770243 +0000 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:25:53.101003026 +0000 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:25:53.101003026 +0000 2024-02-23T00:29:09.883 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:29:09.884 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-23T00:29:09.935 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:29:09.935 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:29:09.935 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000327964 s, 1.6 MB/s 2024-02-23T00:29:09.936 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-23T00:29:09.991 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme2n1 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme2n1 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:28:42.295769957 +0000 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:25:53.208946472 +0000 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:25:53.208946472 +0000 2024-02-23T00:29:10.040 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:29:10.041 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-23T00:29:10.098 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:29:10.098 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:29:10.098 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.000421959 s, 1.2 MB/s 2024-02-23T00:29:10.099 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-23T00:29:10.147 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme3n1 2024-02-23T00:29:10.194 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme3n1 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:28:42.311769576 +0000 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:25:53.296900391 +0000 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:25:53.296900391 +0000 2024-02-23T00:29:10.195 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:29:10.195 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-23T00:29:10.247 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:10 smithi142 bash[20802]: cluster 2024-02-23T00:29:09.089195+0000 mgr.smithi046.lplrtl (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:10.247 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:10 smithi142 bash[20802]: audit 2024-02-23T00:29:10.036228+0000 mon.smithi046 (mon.0) 192 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:10.248 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:10 smithi142 bash[20802]: audit 2024-02-23T00:29:10.039178+0000 mon.smithi046 (mon.0) 193 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:29:10.250 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:29:10.250 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:29:10.250 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.00028334 s, 1.8 MB/s 2024-02-23T00:29:10.250 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-23T00:29:10.300 DEBUG:teuthology.orchestra.run.smithi142:> stat /dev/nvme4n1 2024-02-23T00:29:10.350 INFO:teuthology.orchestra.run.smithi142.stdout: File: /dev/nvme4n1 2024-02-23T00:29:10.350 INFO:teuthology.orchestra.run.smithi142.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout:Access: 2024-02-23 00:28:42.327769195 +0000 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout:Modify: 2024-02-23 00:25:53.408841742 +0000 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout:Change: 2024-02-23 00:25:53.408841742 +0000 2024-02-23T00:29:10.351 INFO:teuthology.orchestra.run.smithi142.stdout: Birth: - 2024-02-23T00:29:10.351 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-23T00:29:10.405 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records in 2024-02-23T00:29:10.405 INFO:teuthology.orchestra.run.smithi142.stderr:1+0 records out 2024-02-23T00:29:10.405 INFO:teuthology.orchestra.run.smithi142.stderr:512 bytes copied, 0.00043253 s, 1.2 MB/s 2024-02-23T00:29:10.406 DEBUG:teuthology.orchestra.run.smithi142:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-23T00:29:10.456 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-23T00:29:10.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:10 smithi046 bash[16275]: cluster 2024-02-23T00:29:09.089195+0000 mgr.smithi046.lplrtl (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:10.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:10 smithi046 bash[16275]: audit 2024-02-23T00:29:10.036228+0000 mon.smithi046 (mon.0) 192 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:10.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:10 smithi046 bash[16275]: audit 2024-02-23T00:29:10.039178+0000 mon.smithi046 (mon.0) 193 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:29:12.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:12 smithi046 bash[16275]: cluster 2024-02-23T00:29:11.089686+0000 mgr.smithi046.lplrtl (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:12.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:12 smithi142 bash[20802]: cluster 2024-02-23T00:29:11.089686+0000 mgr.smithi046.lplrtl (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:13.779 INFO:teuthology.orchestra.run.smithi142.stdout:Scheduled osd.all-available-devices update... 2024-02-23T00:29:14.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:14 smithi142 bash[20802]: audit 2024-02-23T00:29:13.062549+0000 mon.smithi046 (mon.0) 194 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:14.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:14 smithi142 bash[20802]: cluster 2024-02-23T00:29:13.090138+0000 mgr.smithi046.lplrtl (mgr.14184) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:14.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:14 smithi142 bash[20802]: audit 2024-02-23T00:29:13.775716+0000 mon.smithi046 (mon.0) 195 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:14.398 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-23T00:29:14.398 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:14.414 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:14 smithi046 bash[16275]: audit 2024-02-23T00:29:13.062549+0000 mon.smithi046 (mon.0) 194 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:14.414 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:14 smithi046 bash[16275]: cluster 2024-02-23T00:29:13.090138+0000 mgr.smithi046.lplrtl (mgr.14184) 21 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:14.414 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:14 smithi046 bash[16275]: audit 2024-02-23T00:29:13.775716+0000 mon.smithi046 (mon.0) 195 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:15.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:15 smithi046 bash[16275]: audit 2024-02-23T00:29:13.763720+0000 mgr.smithi046.lplrtl (mgr.14184) 22 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:29:15.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:15 smithi046 bash[16275]: cephadm 2024-02-23T00:29:13.768186+0000 mgr.smithi046.lplrtl (mgr.14184) 23 : cephadm [INF] Marking host: smithi046 for OSDSpec preview refresh. 2024-02-23T00:29:15.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:15 smithi046 bash[16275]: cephadm 2024-02-23T00:29:13.768596+0000 mgr.smithi046.lplrtl (mgr.14184) 24 : cephadm [INF] Marking host: smithi142 for OSDSpec preview refresh. 2024-02-23T00:29:15.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:15 smithi046 bash[16275]: cephadm 2024-02-23T00:29:13.769330+0000 mgr.smithi046.lplrtl (mgr.14184) 25 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-23T00:29:15.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:15 smithi142 bash[20802]: audit 2024-02-23T00:29:13.763720+0000 mgr.smithi046.lplrtl (mgr.14184) 22 : audit [DBG] from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:29:15.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:15 smithi142 bash[20802]: cephadm 2024-02-23T00:29:13.768186+0000 mgr.smithi046.lplrtl (mgr.14184) 23 : cephadm [INF] Marking host: smithi046 for OSDSpec preview refresh. 2024-02-23T00:29:15.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:15 smithi142 bash[20802]: cephadm 2024-02-23T00:29:13.768596+0000 mgr.smithi046.lplrtl (mgr.14184) 24 : cephadm [INF] Marking host: smithi142 for OSDSpec preview refresh. 2024-02-23T00:29:15.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:15 smithi142 bash[20802]: cephadm 2024-02-23T00:29:13.769330+0000 mgr.smithi046.lplrtl (mgr.14184) 25 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-23T00:29:16.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:16 smithi046 bash[16275]: cluster 2024-02-23T00:29:15.090608+0000 mgr.smithi046.lplrtl (mgr.14184) 26 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:16.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:16 smithi142 bash[20802]: cluster 2024-02-23T00:29:15.090608+0000 mgr.smithi046.lplrtl (mgr.14184) 26 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:17.477 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:17.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.658401+0000 mon.smithi046 (mon.0) 196 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.669872+0000 mon.smithi046 (mon.0) 197 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.671922+0000 mon.smithi046 (mon.0) 198 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.673599+0000 mon.smithi046 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: cephadm 2024-02-23T00:29:16.675741+0000 mgr.smithi046.lplrtl (mgr.14184) 27 : cephadm [INF] Updating smithi046:/etc/ceph/ceph.conf 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: cephadm 2024-02-23T00:29:16.676345+0000 mgr.smithi046.lplrtl (mgr.14184) 28 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.700964+0000 mon.smithi046 (mon.0) 200 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.769847+0000 mon.smithi046 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.777867+0000 mon.smithi046 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.787869+0000 mon.smithi046 (mon.0) 203 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.794113+0000 mon.smithi046 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.796648+0000 mon.smithi046 (mon.0) 205 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.797042+0000 mon.smithi046 (mon.0) 206 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:16.797987+0000 mon.smithi046 (mon.0) 207 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: cluster 2024-02-23T00:29:17.091177+0000 mgr.smithi046.lplrtl (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:17 smithi046 bash[16275]: audit 2024-02-23T00:29:17.474916+0000 mon.smithi046 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.46:0/1494064524' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.658401+0000 mon.smithi046 (mon.0) 196 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.669872+0000 mon.smithi046 (mon.0) 197 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.671922+0000 mon.smithi046 (mon.0) 198 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.673599+0000 mon.smithi046 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: cephadm 2024-02-23T00:29:16.675741+0000 mgr.smithi046.lplrtl (mgr.14184) 27 : cephadm [INF] Updating smithi046:/etc/ceph/ceph.conf 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: cephadm 2024-02-23T00:29:16.676345+0000 mgr.smithi046.lplrtl (mgr.14184) 28 : cephadm [INF] Updating smithi142:/etc/ceph/ceph.conf 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.700964+0000 mon.smithi046 (mon.0) 200 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.769847+0000 mon.smithi046 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.777867+0000 mon.smithi046 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.787869+0000 mon.smithi046 (mon.0) 203 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.794113+0000 mon.smithi046 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.796648+0000 mon.smithi046 (mon.0) 205 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:29:18.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.797042+0000 mon.smithi046 (mon.0) 206 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:18.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:16.797987+0000 mon.smithi046 (mon.0) 207 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:18.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: cluster 2024-02-23T00:29:17.091177+0000 mgr.smithi046.lplrtl (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:18.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:17 smithi142 bash[20802]: audit 2024-02-23T00:29:17.474916+0000 mon.smithi046 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.46:0/1494064524' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:18.092 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:29:19.093 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:20.344 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:20 smithi046 bash[16275]: cluster 2024-02-23T00:29:19.091696+0000 mgr.smithi046.lplrtl (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:20.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:20 smithi142 bash[20802]: cluster 2024-02-23T00:29:19.091696+0000 mgr.smithi046.lplrtl (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:22.183 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:22.440 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:22 smithi142 bash[20802]: cluster 2024-02-23T00:29:21.092131+0000 mgr.smithi046.lplrtl (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:22.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:22 smithi046 bash[16275]: cluster 2024-02-23T00:29:21.092131+0000 mgr.smithi046.lplrtl (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:23.013 INFO:teuthology.orchestra.run.smithi046.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-02-23T00:29:23.177 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:23 smithi046 bash[16275]: audit 2024-02-23T00:29:22.181001+0000 mon.smithi046 (mon.0) 209 : audit [DBG] from='client.? 172.21.15.46:0/1004820272' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:23.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:23 smithi142 bash[20802]: audit 2024-02-23T00:29:22.181001+0000 mon.smithi046 (mon.0) 209 : audit [DBG] from='client.? 172.21.15.46:0/1004820272' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:24.014 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:24.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:24 smithi046 bash[16275]: cluster 2024-02-23T00:29:23.092668+0000 mgr.smithi046.lplrtl (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:24.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:24 smithi142 bash[20802]: cluster 2024-02-23T00:29:23.092668+0000 mgr.smithi046.lplrtl (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:26.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: cluster 2024-02-23T00:29:25.093206+0000 mgr.smithi046.lplrtl (mgr.14184) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:26.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.263108+0000 mon.smithi142 (mon.1) 2 : audit [INF] from='client.? 172.21.15.142:0/238361414' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]: dispatch 2024-02-23T00:29:26.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.265014+0000 mon.smithi046 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]: dispatch 2024-02-23T00:29:26.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.269890+0000 mon.smithi046 (mon.0) 211 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]': finished 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: cluster 2024-02-23T00:29:25.269955+0000 mon.smithi046 (mon.0) 212 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.270087+0000 mon.smithi046 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.747777+0000 mon.smithi046 (mon.0) 214 : audit [INF] from='client.? 172.21.15.46:0/1337714577' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "61b0fd98-ee1b-4417-8d2e-6fa76459c990"}]: dispatch 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.753668+0000 mon.smithi046 (mon.0) 215 : audit [INF] from='client.? 172.21.15.46:0/1337714577' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "61b0fd98-ee1b-4417-8d2e-6fa76459c990"}]': finished 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: cluster 2024-02-23T00:29:25.753711+0000 mon.smithi046 (mon.0) 216 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.753932+0000 mon.smithi046 (mon.0) 217 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:26.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:26 smithi046 bash[16275]: audit 2024-02-23T00:29:25.754750+0000 mon.smithi046 (mon.0) 218 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:26.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: cluster 2024-02-23T00:29:25.093206+0000 mgr.smithi046.lplrtl (mgr.14184) 33 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.263108+0000 mon.smithi142 (mon.1) 2 : audit [INF] from='client.? 172.21.15.142:0/238361414' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]: dispatch 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.265014+0000 mon.smithi046 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]: dispatch 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.269890+0000 mon.smithi046 (mon.0) 211 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6c007331-aea6-4379-a214-9011c1a654b6"}]': finished 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: cluster 2024-02-23T00:29:25.269955+0000 mon.smithi046 (mon.0) 212 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.270087+0000 mon.smithi046 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.747777+0000 mon.smithi046 (mon.0) 214 : audit [INF] from='client.? 172.21.15.46:0/1337714577' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "61b0fd98-ee1b-4417-8d2e-6fa76459c990"}]: dispatch 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.753668+0000 mon.smithi046 (mon.0) 215 : audit [INF] from='client.? 172.21.15.46:0/1337714577' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "61b0fd98-ee1b-4417-8d2e-6fa76459c990"}]': finished 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: cluster 2024-02-23T00:29:25.753711+0000 mon.smithi046 (mon.0) 216 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.753932+0000 mon.smithi046 (mon.0) 217 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:26.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:26 smithi142 bash[20802]: audit 2024-02-23T00:29:25.754750+0000 mon.smithi046 (mon.0) 218 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:27.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:27 smithi046 bash[16275]: audit 2024-02-23T00:29:26.334382+0000 mon.smithi142 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.142:0/3077546679' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:27.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:27 smithi142 bash[20802]: audit 2024-02-23T00:29:26.334382+0000 mon.smithi142 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.142:0/3077546679' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:27.520 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:28.102 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1708648165,"num_remapped_pgs":0} 2024-02-23T00:29:28.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:28 smithi046 bash[16275]: cluster 2024-02-23T00:29:27.093602+0000 mgr.smithi046.lplrtl (mgr.14184) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:28.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:28 smithi046 bash[16275]: audit 2024-02-23T00:29:27.436742+0000 mon.smithi046 (mon.0) 219 : audit [DBG] from='client.? 172.21.15.46:0/625251600' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:28.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:28 smithi046 bash[16275]: audit 2024-02-23T00:29:27.518255+0000 mon.smithi046 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.46:0/794744363' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:28.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:28 smithi142 bash[20802]: cluster 2024-02-23T00:29:27.093602+0000 mgr.smithi046.lplrtl (mgr.14184) 34 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:28.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:28 smithi142 bash[20802]: audit 2024-02-23T00:29:27.436742+0000 mon.smithi046 (mon.0) 219 : audit [DBG] from='client.? 172.21.15.46:0/625251600' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:28.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:28 smithi142 bash[20802]: audit 2024-02-23T00:29:27.518255+0000 mon.smithi046 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.46:0/794744363' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:29.103 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.033154+0000 mon.smithi142 (mon.1) 4 : audit [INF] from='client.? 172.21.15.142:0/2379756799' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]: dispatch 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.035003+0000 mon.smithi046 (mon.0) 221 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]: dispatch 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.043089+0000 mon.smithi046 (mon.0) 222 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]': finished 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: cluster 2024-02-23T00:29:29.043230+0000 mon.smithi046 (mon.0) 223 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.043961+0000 mon.smithi046 (mon.0) 224 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.044423+0000 mon.smithi046 (mon.0) 225 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:29.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:29 smithi046 bash[16275]: audit 2024-02-23T00:29:29.044833+0000 mon.smithi046 (mon.0) 226 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.033154+0000 mon.smithi142 (mon.1) 4 : audit [INF] from='client.? 172.21.15.142:0/2379756799' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]: dispatch 2024-02-23T00:29:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.035003+0000 mon.smithi046 (mon.0) 221 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]: dispatch 2024-02-23T00:29:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.043089+0000 mon.smithi046 (mon.0) 222 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "643bdf4b-8796-4274-afa7-650022e9b7a0"}]': finished 2024-02-23T00:29:29.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: cluster 2024-02-23T00:29:29.043230+0000 mon.smithi046 (mon.0) 223 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-23T00:29:29.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.043961+0000 mon.smithi046 (mon.0) 224 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:29.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.044423+0000 mon.smithi046 (mon.0) 225 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:29.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:29 smithi142 bash[20802]: audit 2024-02-23T00:29:29.044833+0000 mon.smithi046 (mon.0) 226 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:30.390 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:30 smithi046 bash[16275]: cluster 2024-02-23T00:29:29.093981+0000 mgr.smithi046.lplrtl (mgr.14184) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:30.390 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:30 smithi046 bash[16275]: audit 2024-02-23T00:29:30.080100+0000 mon.smithi142 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.142:0/468007607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:30.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:30 smithi142 bash[20802]: cluster 2024-02-23T00:29:29.093981+0000 mgr.smithi046.lplrtl (mgr.14184) 35 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:30.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:30 smithi142 bash[20802]: audit 2024-02-23T00:29:30.080100+0000 mon.smithi142 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.142:0/468007607' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.250983+0000 mon.smithi046 (mon.0) 227 : audit [INF] from='client.? 172.21.15.46:0/2062046107' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "637f4e1d-6985-42bb-a881-d3d57f803539"}]: dispatch 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.258469+0000 mon.smithi046 (mon.0) 228 : audit [INF] from='client.? 172.21.15.46:0/2062046107' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "637f4e1d-6985-42bb-a881-d3d57f803539"}]': finished 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: cluster 2024-02-23T00:29:30.258618+0000 mon.smithi046 (mon.0) 229 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.258769+0000 mon.smithi046 (mon.0) 230 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.259134+0000 mon.smithi046 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.259363+0000 mon.smithi046 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:31.190 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:31 smithi142 bash[20802]: audit 2024-02-23T00:29:30.259628+0000 mon.smithi046 (mon.0) 233 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.250983+0000 mon.smithi046 (mon.0) 227 : audit [INF] from='client.? 172.21.15.46:0/2062046107' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "637f4e1d-6985-42bb-a881-d3d57f803539"}]: dispatch 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.258469+0000 mon.smithi046 (mon.0) 228 : audit [INF] from='client.? 172.21.15.46:0/2062046107' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "637f4e1d-6985-42bb-a881-d3d57f803539"}]': finished 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: cluster 2024-02-23T00:29:30.258618+0000 mon.smithi046 (mon.0) 229 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.258769+0000 mon.smithi046 (mon.0) 230 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.259134+0000 mon.smithi046 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.259363+0000 mon.smithi046 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:31.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:31 smithi046 bash[16275]: audit 2024-02-23T00:29:30.259628+0000 mon.smithi046 (mon.0) 233 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:32.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:32 smithi046 bash[16275]: cluster 2024-02-23T00:29:31.094379+0000 mgr.smithi046.lplrtl (mgr.14184) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:32.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:32 smithi046 bash[16275]: audit 2024-02-23T00:29:31.891112+0000 mon.smithi046 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.46:0/1096221489' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:32.528 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:32.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:32 smithi142 bash[20802]: cluster 2024-02-23T00:29:31.094379+0000 mgr.smithi046.lplrtl (mgr.14184) 36 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:32.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:32 smithi142 bash[20802]: audit 2024-02-23T00:29:31.891112+0000 mon.smithi046 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.46:0/1096221489' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:33.105 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1708648170,"num_remapped_pgs":0} 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.526708+0000 mon.smithi046 (mon.0) 235 : audit [DBG] from='client.? 172.21.15.46:0/3586528493' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.797324+0000 mon.smithi142 (mon.1) 6 : audit [INF] from='client.? 172.21.15.142:0/815838798' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]: dispatch 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.798851+0000 mon.smithi046 (mon.0) 236 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]: dispatch 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.803841+0000 mon.smithi046 (mon.0) 237 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]': finished 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: cluster 2024-02-23T00:29:32.803932+0000 mon.smithi046 (mon.0) 238 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-23T00:29:33.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.804131+0000 mon.smithi046 (mon.0) 239 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:33.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.804768+0000 mon.smithi046 (mon.0) 240 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:33.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.805195+0000 mon.smithi046 (mon.0) 241 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:33.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.805645+0000 mon.smithi046 (mon.0) 242 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:33.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:33 smithi046 bash[16275]: audit 2024-02-23T00:29:32.806168+0000 mon.smithi046 (mon.0) 243 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.526708+0000 mon.smithi046 (mon.0) 235 : audit [DBG] from='client.? 172.21.15.46:0/3586528493' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.797324+0000 mon.smithi142 (mon.1) 6 : audit [INF] from='client.? 172.21.15.142:0/815838798' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]: dispatch 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.798851+0000 mon.smithi046 (mon.0) 236 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]: dispatch 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.803841+0000 mon.smithi046 (mon.0) 237 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b747c553-d879-4ef2-aff0-7d27609ec57a"}]': finished 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: cluster 2024-02-23T00:29:32.803932+0000 mon.smithi046 (mon.0) 238 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.804131+0000 mon.smithi046 (mon.0) 239 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.804768+0000 mon.smithi046 (mon.0) 240 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.805195+0000 mon.smithi046 (mon.0) 241 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.805645+0000 mon.smithi046 (mon.0) 242 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:33 smithi142 bash[20802]: audit 2024-02-23T00:29:32.806168+0000 mon.smithi046 (mon.0) 243 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:34.107 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:34.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:34 smithi046 bash[16275]: cluster 2024-02-23T00:29:33.094757+0000 mgr.smithi046.lplrtl (mgr.14184) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:34.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:34 smithi046 bash[16275]: audit 2024-02-23T00:29:33.838921+0000 mon.smithi142 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.142:0/480847892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:34 smithi142 bash[20802]: cluster 2024-02-23T00:29:33.094757+0000 mgr.smithi046.lplrtl (mgr.14184) 37 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:34 smithi142 bash[20802]: audit 2024-02-23T00:29:33.838921+0000 mon.smithi142 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.142:0/480847892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.608217+0000 mon.smithi046 (mon.0) 244 : audit [INF] from='client.? 172.21.15.46:0/282667834' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cef5ef86-723b-424b-a4fa-289844904124"}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.613811+0000 mon.smithi046 (mon.0) 245 : audit [INF] from='client.? 172.21.15.46:0/282667834' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cef5ef86-723b-424b-a4fa-289844904124"}]': finished 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: cluster 2024-02-23T00:29:34.613851+0000 mon.smithi046 (mon.0) 246 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.614060+0000 mon.smithi046 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.614708+0000 mon.smithi046 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.615189+0000 mon.smithi046 (mon.0) 249 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.615600+0000 mon.smithi046 (mon.0) 250 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:35.525 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.616008+0000 mon.smithi046 (mon.0) 251 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:35.526 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:35 smithi046 bash[16275]: audit 2024-02-23T00:29:34.616778+0000 mon.smithi046 (mon.0) 252 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.608217+0000 mon.smithi046 (mon.0) 244 : audit [INF] from='client.? 172.21.15.46:0/282667834' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cef5ef86-723b-424b-a4fa-289844904124"}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.613811+0000 mon.smithi046 (mon.0) 245 : audit [INF] from='client.? 172.21.15.46:0/282667834' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cef5ef86-723b-424b-a4fa-289844904124"}]': finished 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: cluster 2024-02-23T00:29:34.613851+0000 mon.smithi046 (mon.0) 246 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.614060+0000 mon.smithi046 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.614708+0000 mon.smithi046 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.615189+0000 mon.smithi046 (mon.0) 249 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.615600+0000 mon.smithi046 (mon.0) 250 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.616008+0000 mon.smithi046 (mon.0) 251 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:35 smithi142 bash[20802]: audit 2024-02-23T00:29:34.616778+0000 mon.smithi046 (mon.0) 252 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:36 smithi046 bash[16275]: cluster 2024-02-23T00:29:35.095160+0000 mgr.smithi046.lplrtl (mgr.14184) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:36 smithi046 bash[16275]: audit 2024-02-23T00:29:35.944060+0000 mon.smithi046 (mon.0) 253 : audit [DBG] from='client.? 172.21.15.46:0/3818148947' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:36 smithi142 bash[20802]: cluster 2024-02-23T00:29:35.095160+0000 mgr.smithi046.lplrtl (mgr.14184) 38 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:36 smithi142 bash[20802]: audit 2024-02-23T00:29:35.944060+0000 mon.smithi046 (mon.0) 253 : audit [DBG] from='client.? 172.21.15.46:0/3818148947' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:37.440 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.551689+0000 mon.smithi142 (mon.1) 8 : audit [INF] from='client.? 172.21.15.142:0/2236424295' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]: dispatch 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.553132+0000 mon.smithi046 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]: dispatch 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.559078+0000 mon.smithi046 (mon.0) 255 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]': finished 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: cluster 2024-02-23T00:29:36.559182+0000 mon.smithi046 (mon.0) 256 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.559373+0000 mon.smithi046 (mon.0) 257 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:37.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.560018+0000 mon.smithi046 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:37.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.560507+0000 mon.smithi046 (mon.0) 259 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:37.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.560954+0000 mon.smithi046 (mon.0) 260 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:37.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.561430+0000 mon.smithi046 (mon.0) 261 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:37.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.561857+0000 mon.smithi046 (mon.0) 262 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:37.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:37 smithi046 bash[16275]: audit 2024-02-23T00:29:36.562401+0000 mon.smithi046 (mon.0) 263 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:29:37.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.551689+0000 mon.smithi142 (mon.1) 8 : audit [INF] from='client.? 172.21.15.142:0/2236424295' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.553132+0000 mon.smithi046 (mon.0) 254 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.559078+0000 mon.smithi046 (mon.0) 255 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7d0534a4-f532-4621-8b1e-1b1a4e0fc64f"}]': finished 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: cluster 2024-02-23T00:29:36.559182+0000 mon.smithi046 (mon.0) 256 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.559373+0000 mon.smithi046 (mon.0) 257 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.560018+0000 mon.smithi046 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.560507+0000 mon.smithi046 (mon.0) 259 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.560954+0000 mon.smithi046 (mon.0) 260 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.561430+0000 mon.smithi046 (mon.0) 261 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.561857+0000 mon.smithi046 (mon.0) 262 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:37 smithi142 bash[20802]: audit 2024-02-23T00:29:36.562401+0000 mon.smithi046 (mon.0) 263 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:29:37.975 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1708648176,"num_remapped_pgs":0} 2024-02-23T00:29:38.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:38 smithi046 bash[16275]: cluster 2024-02-23T00:29:37.095557+0000 mgr.smithi046.lplrtl (mgr.14184) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:38.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:38 smithi046 bash[16275]: audit 2024-02-23T00:29:37.437856+0000 mon.smithi046 (mon.0) 264 : audit [DBG] from='client.? 172.21.15.46:0/1069428439' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:38.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:38 smithi046 bash[16275]: audit 2024-02-23T00:29:37.645633+0000 mon.smithi046 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.142:0/883938055' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:38.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:38 smithi142 bash[20802]: cluster 2024-02-23T00:29:37.095557+0000 mgr.smithi046.lplrtl (mgr.14184) 39 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:38 smithi142 bash[20802]: audit 2024-02-23T00:29:37.437856+0000 mon.smithi046 (mon.0) 264 : audit [DBG] from='client.? 172.21.15.46:0/1069428439' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:38 smithi142 bash[20802]: audit 2024-02-23T00:29:37.645633+0000 mon.smithi046 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.142:0/883938055' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:38.976 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.717540+0000 mon.smithi046 (mon.0) 266 : audit [INF] from='client.? 172.21.15.46:0/364115093' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "871813b4-d1da-4ce3-a95e-c8bbc0018f5e"}]: dispatch 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.725771+0000 mon.smithi046 (mon.0) 267 : audit [INF] from='client.? 172.21.15.46:0/364115093' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "871813b4-d1da-4ce3-a95e-c8bbc0018f5e"}]': finished 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: cluster 2024-02-23T00:29:38.725887+0000 mon.smithi046 (mon.0) 268 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.726034+0000 mon.smithi046 (mon.0) 269 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.726426+0000 mon.smithi046 (mon.0) 270 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:39.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.726684+0000 mon.smithi046 (mon.0) 271 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.726953+0000 mon.smithi046 (mon.0) 272 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.727201+0000 mon.smithi046 (mon.0) 273 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.727452+0000 mon.smithi046 (mon.0) 274 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.727695+0000 mon.smithi046 (mon.0) 275 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:29:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:39 smithi046 bash[16275]: audit 2024-02-23T00:29:38.727941+0000 mon.smithi046 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.717540+0000 mon.smithi046 (mon.0) 266 : audit [INF] from='client.? 172.21.15.46:0/364115093' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "871813b4-d1da-4ce3-a95e-c8bbc0018f5e"}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.725771+0000 mon.smithi046 (mon.0) 267 : audit [INF] from='client.? 172.21.15.46:0/364115093' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "871813b4-d1da-4ce3-a95e-c8bbc0018f5e"}]': finished 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: cluster 2024-02-23T00:29:38.725887+0000 mon.smithi046 (mon.0) 268 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.726034+0000 mon.smithi046 (mon.0) 269 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.726426+0000 mon.smithi046 (mon.0) 270 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.726684+0000 mon.smithi046 (mon.0) 271 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.726953+0000 mon.smithi046 (mon.0) 272 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.727201+0000 mon.smithi046 (mon.0) 273 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.727452+0000 mon.smithi046 (mon.0) 274 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:29:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.727695+0000 mon.smithi046 (mon.0) 275 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:29:39.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:39 smithi142 bash[20802]: audit 2024-02-23T00:29:38.727941+0000 mon.smithi046 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:29:40.428 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:40 smithi046 bash[16275]: cluster 2024-02-23T00:29:39.095893+0000 mgr.smithi046.lplrtl (mgr.14184) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:40.428 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:40 smithi046 bash[16275]: audit 2024-02-23T00:29:40.050305+0000 mon.smithi046 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.46:0/803435339' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:40.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:40 smithi142 bash[20802]: cluster 2024-02-23T00:29:39.095893+0000 mgr.smithi046.lplrtl (mgr.14184) 40 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:40.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:40 smithi142 bash[20802]: audit 2024-02-23T00:29:40.050305+0000 mon.smithi046 (mon.0) 277 : audit [DBG] from='client.? 172.21.15.46:0/803435339' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-23T00:29:42.024 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:42.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:42 smithi046 bash[16275]: cluster 2024-02-23T00:29:41.096310+0000 mgr.smithi046.lplrtl (mgr.14184) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:42.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:42 smithi046 bash[16275]: audit 2024-02-23T00:29:42.021461+0000 mon.smithi046 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.46:0/582513693' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:42.622 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:29:42.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:42 smithi142 bash[20802]: cluster 2024-02-23T00:29:41.096310+0000 mgr.smithi046.lplrtl (mgr.14184) 41 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:42.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:42 smithi142 bash[20802]: audit 2024-02-23T00:29:42.021461+0000 mon.smithi046 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.46:0/582513693' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:43.623 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:44.627 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:44 smithi046 bash[16275]: cluster 2024-02-23T00:29:43.096790+0000 mgr.smithi046.lplrtl (mgr.14184) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:44.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:44 smithi142 bash[20802]: cluster 2024-02-23T00:29:43.096790+0000 mgr.smithi046.lplrtl (mgr.14184) 42 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:46 smithi046 bash[16275]: cluster 2024-02-23T00:29:45.097245+0000 mgr.smithi046.lplrtl (mgr.14184) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:46.502 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:46.534 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:46 smithi142 bash[20802]: cluster 2024-02-23T00:29:45.097245+0000 mgr.smithi046.lplrtl (mgr.14184) 43 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:47.071 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:29:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:47 smithi046 bash[16275]: audit 2024-02-23T00:29:46.500547+0000 mon.smithi046 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.46:0/3620372944' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:47.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:47 smithi142 bash[20802]: audit 2024-02-23T00:29:46.500547+0000 mon.smithi046 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.46:0/3620372944' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:48.072 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:48.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:48 smithi046 bash[16275]: cluster 2024-02-23T00:29:47.097655+0000 mgr.smithi046.lplrtl (mgr.14184) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:48.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:48 smithi142 bash[20802]: cluster 2024-02-23T00:29:47.097655+0000 mgr.smithi046.lplrtl (mgr.14184) 44 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:49.444 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:49 smithi046 bash[16275]: audit 2024-02-23T00:29:48.957526+0000 mon.smithi046 (mon.0) 280 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-23T00:29:49.445 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:49 smithi046 bash[16275]: audit 2024-02-23T00:29:48.959493+0000 mon.smithi046 (mon.0) 281 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:49.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:49 smithi142 bash[20802]: audit 2024-02-23T00:29:48.957526+0000 mon.smithi046 (mon.0) 280 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-23T00:29:49.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:49 smithi142 bash[20802]: audit 2024-02-23T00:29:48.959493+0000 mon.smithi046 (mon.0) 281 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:50.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:50 smithi046 bash[16275]: cephadm 2024-02-23T00:29:48.961129+0000 mgr.smithi046.lplrtl (mgr.14184) 45 : cephadm [INF] Deploying daemon osd.0 on smithi142 2024-02-23T00:29:50.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:50 smithi046 bash[16275]: cluster 2024-02-23T00:29:49.098097+0000 mgr.smithi046.lplrtl (mgr.14184) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:50 smithi142 bash[20802]: cephadm 2024-02-23T00:29:48.961129+0000 mgr.smithi046.lplrtl (mgr.14184) 45 : cephadm [INF] Deploying daemon osd.0 on smithi142 2024-02-23T00:29:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:50 smithi142 bash[20802]: cluster 2024-02-23T00:29:49.098097+0000 mgr.smithi046.lplrtl (mgr.14184) 46 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:52.133 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:52.577 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:52 smithi142 bash[20802]: cluster 2024-02-23T00:29:51.098530+0000 mgr.smithi046.lplrtl (mgr.14184) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:52.577 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:52 smithi142 bash[20802]: audit 2024-02-23T00:29:52.131017+0000 mon.smithi046 (mon.0) 282 : audit [DBG] from='client.? 172.21.15.46:0/541278001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:52.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:52 smithi046 bash[16275]: cluster 2024-02-23T00:29:51.098530+0000 mgr.smithi046.lplrtl (mgr.14184) 47 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:52.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:52 smithi046 bash[16275]: audit 2024-02-23T00:29:52.131017+0000 mon.smithi046 (mon.0) 282 : audit [DBG] from='client.? 172.21.15.46:0/541278001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:52.994 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:29:53.996 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: audit 2024-02-23T00:29:52.883257+0000 mon.smithi046 (mon.0) 283 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: audit 2024-02-23T00:29:52.885102+0000 mon.smithi046 (mon.0) 284 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: audit 2024-02-23T00:29:52.886920+0000 mon.smithi046 (mon.0) 285 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: cephadm 2024-02-23T00:29:52.888474+0000 mgr.smithi046.lplrtl (mgr.14184) 48 : cephadm [INF] Deploying daemon osd.2 on smithi142 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: audit 2024-02-23T00:29:52.902879+0000 mon.smithi046 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: audit 2024-02-23T00:29:52.904267+0000 mon.smithi046 (mon.0) 287 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:54.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: cephadm 2024-02-23T00:29:52.905558+0000 mgr.smithi046.lplrtl (mgr.14184) 49 : cephadm [INF] Deploying daemon osd.1 on smithi046 2024-02-23T00:29:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:53 smithi142 bash[20802]: cluster 2024-02-23T00:29:53.098996+0000 mgr.smithi046.lplrtl (mgr.14184) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:54.286 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: audit 2024-02-23T00:29:52.883257+0000 mon.smithi046 (mon.0) 283 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:54.286 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: audit 2024-02-23T00:29:52.885102+0000 mon.smithi046 (mon.0) 284 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-23T00:29:54.286 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: audit 2024-02-23T00:29:52.886920+0000 mon.smithi046 (mon.0) 285 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:54.287 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: cephadm 2024-02-23T00:29:52.888474+0000 mgr.smithi046.lplrtl (mgr.14184) 48 : cephadm [INF] Deploying daemon osd.2 on smithi142 2024-02-23T00:29:54.287 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: audit 2024-02-23T00:29:52.902879+0000 mon.smithi046 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-23T00:29:54.287 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: audit 2024-02-23T00:29:52.904267+0000 mon.smithi046 (mon.0) 287 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:54.287 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: cephadm 2024-02-23T00:29:52.905558+0000 mgr.smithi046.lplrtl (mgr.14184) 49 : cephadm [INF] Deploying daemon osd.1 on smithi046 2024-02-23T00:29:54.287 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:53 smithi046 bash[16275]: cluster 2024-02-23T00:29:53.098996+0000 mgr.smithi046.lplrtl (mgr.14184) 50 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:56 smithi046 bash[16275]: cluster 2024-02-23T00:29:55.099398+0000 mgr.smithi046.lplrtl (mgr.14184) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:56.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:56 smithi142 bash[20802]: cluster 2024-02-23T00:29:55.099398+0000 mgr.smithi046.lplrtl (mgr.14184) 51 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:57.649 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: cluster 2024-02-23T00:29:57.099831+0000 mgr.smithi046.lplrtl (mgr.14184) 52 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.241865+0000 mon.smithi046 (mon.0) 288 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.243011+0000 mon.smithi046 (mon.0) 289 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.244060+0000 mon.smithi046 (mon.0) 290 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: cephadm 2024-02-23T00:29:57.245088+0000 mgr.smithi046.lplrtl (mgr.14184) 53 : cephadm [INF] Deploying daemon osd.3 on smithi046 2024-02-23T00:29:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.647247+0000 mon.smithi046 (mon.0) 291 : audit [DBG] from='client.? 172.21.15.46:0/3541089502' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.886278+0000 mon.smithi046 (mon.0) 292 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.888080+0000 mon.smithi046 (mon.0) 293 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-23T00:29:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:58 smithi142 bash[20802]: audit 2024-02-23T00:29:57.889877+0000 mon.smithi046 (mon.0) 294 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:58.685 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: cluster 2024-02-23T00:29:57.099831+0000 mgr.smithi046.lplrtl (mgr.14184) 52 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:29:58.685 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.241865+0000 mon.smithi046 (mon.0) 288 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:58.685 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.243011+0000 mon.smithi046 (mon.0) 289 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.244060+0000 mon.smithi046 (mon.0) 290 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: cephadm 2024-02-23T00:29:57.245088+0000 mgr.smithi046.lplrtl (mgr.14184) 53 : cephadm [INF] Deploying daemon osd.3 on smithi046 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.647247+0000 mon.smithi046 (mon.0) 291 : audit [DBG] from='client.? 172.21.15.46:0/3541089502' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.886278+0000 mon.smithi046 (mon.0) 292 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.888080+0000 mon.smithi046 (mon.0) 293 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-23T00:29:58.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:58 smithi046 bash[16275]: audit 2024-02-23T00:29:57.889877+0000 mon.smithi046 (mon.0) 294 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:29:58.687 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:29:59.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:29:59 smithi046 bash[16275]: cephadm 2024-02-23T00:29:57.891117+0000 mgr.smithi046.lplrtl (mgr.14184) 54 : cephadm [INF] Deploying daemon osd.4 on smithi142 2024-02-23T00:29:59.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:29:59 smithi142 bash[20802]: cephadm 2024-02-23T00:29:57.891117+0000 mgr.smithi046.lplrtl (mgr.14184) 54 : cephadm [INF] Deploying daemon osd.4 on smithi142 2024-02-23T00:29:59.688 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:30:00.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:00 smithi142 bash[20802]: cluster 2024-02-23T00:29:59.100093+0000 mgr.smithi046.lplrtl (mgr.14184) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:00.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:00 smithi142 bash[20802]: cluster 2024-02-23T00:30:00.000194+0000 mon.smithi046 (mon.0) 295 : cluster [INF] overall HEALTH_OK 2024-02-23T00:30:00.556 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:00 smithi046 bash[16275]: cluster 2024-02-23T00:29:59.100093+0000 mgr.smithi046.lplrtl (mgr.14184) 55 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:00.556 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:00 smithi046 bash[16275]: cluster 2024-02-23T00:30:00.000194+0000 mon.smithi046 (mon.0) 295 : cluster [INF] overall HEALTH_OK 2024-02-23T00:30:01.551 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:01 smithi046 bash[16275]: audit 2024-02-23T00:30:00.655125+0000 mon.smithi142 (mon.1) 9 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-23T00:30:01.551 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:01 smithi046 bash[16275]: audit 2024-02-23T00:30:00.655490+0000 mon.smithi046 (mon.0) 296 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-23T00:30:01.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:01 smithi142 bash[20802]: audit 2024-02-23T00:30:00.655125+0000 mon.smithi142 (mon.1) 9 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-23T00:30:01.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:01 smithi142 bash[20802]: audit 2024-02-23T00:30:00.655490+0000 mon.smithi046 (mon.0) 296 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-23T00:30:02.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: cluster 2024-02-23T00:30:01.100515+0000 mgr.smithi046.lplrtl (mgr.14184) 56 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:02.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.261763+0000 mon.smithi046 (mon.0) 297 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: cluster 2024-02-23T00:30:01.261828+0000 mon.smithi046 (mon.0) 298 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.262092+0000 mon.smithi046 (mon.0) 299 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.262786+0000 mon.smithi046 (mon.0) 300 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.263312+0000 mon.smithi046 (mon.0) 301 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.263791+0000 mon.smithi046 (mon.0) 302 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.264274+0000 mon.smithi046 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.264852+0000 mon.smithi046 (mon.0) 304 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.265336+0000 mon.smithi046 (mon.0) 305 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.265822+0000 mon.smithi046 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.266040+0000 mon.smithi142 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:02 smithi046 bash[16275]: audit 2024-02-23T00:30:01.266766+0000 mon.smithi046 (mon.0) 307 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:02.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: cluster 2024-02-23T00:30:01.100515+0000 mgr.smithi046.lplrtl (mgr.14184) 56 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:02.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.261763+0000 mon.smithi046 (mon.0) 297 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-23T00:30:02.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: cluster 2024-02-23T00:30:01.261828+0000 mon.smithi046 (mon.0) 298 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-23T00:30:02.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.262092+0000 mon.smithi046 (mon.0) 299 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.262786+0000 mon.smithi046 (mon.0) 300 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.263312+0000 mon.smithi046 (mon.0) 301 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.263791+0000 mon.smithi046 (mon.0) 302 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.264274+0000 mon.smithi046 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.264852+0000 mon.smithi046 (mon.0) 304 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.265336+0000 mon.smithi046 (mon.0) 305 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.265822+0000 mon.smithi046 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.266040+0000 mon.smithi142 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:02 smithi142 bash[20802]: audit 2024-02-23T00:30:01.266766+0000 mon.smithi046 (mon.0) 307 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.267074+0000 mon.smithi046 (mon.0) 308 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: cluster 2024-02-23T00:30:02.267293+0000 mon.smithi046 (mon.0) 309 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.268114+0000 mon.smithi046 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.269046+0000 mon.smithi046 (mon.0) 311 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.269600+0000 mon.smithi046 (mon.0) 312 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.270081+0000 mon.smithi046 (mon.0) 313 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.270506+0000 mon.smithi046 (mon.0) 314 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.271091+0000 mon.smithi046 (mon.0) 315 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.271639+0000 mon.smithi046 (mon.0) 316 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.278775+0000 mon.smithi046 (mon.0) 317 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:03.316 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:02.279296+0000 mon.smithi046 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:03.317 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:03.240436+0000 mon.smithi046 (mon.0) 319 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:03.317 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:03.241383+0000 mon.smithi046 (mon.0) 320 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-23T00:30:03.317 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:03 smithi046 bash[16275]: audit 2024-02-23T00:30:03.242270+0000 mon.smithi046 (mon.0) 321 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.267074+0000 mon.smithi046 (mon.0) 308 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: cluster 2024-02-23T00:30:02.267293+0000 mon.smithi046 (mon.0) 309 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.268114+0000 mon.smithi046 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.269046+0000 mon.smithi046 (mon.0) 311 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.269600+0000 mon.smithi046 (mon.0) 312 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.270081+0000 mon.smithi046 (mon.0) 313 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.270506+0000 mon.smithi046 (mon.0) 314 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.271091+0000 mon.smithi046 (mon.0) 315 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.271639+0000 mon.smithi046 (mon.0) 316 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.278775+0000 mon.smithi046 (mon.0) 317 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:02.279296+0000 mon.smithi046 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:03.240436+0000 mon.smithi046 (mon.0) 319 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:03.241383+0000 mon.smithi046 (mon.0) 320 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-23T00:30:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:03 smithi142 bash[20802]: audit 2024-02-23T00:30:03.242270+0000 mon.smithi046 (mon.0) 321 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:03.742 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:04.728 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cluster 2024-02-23T00:30:01.657273+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:04.728 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cluster 2024-02-23T00:30:01.657391+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cluster 2024-02-23T00:30:03.100857+0000 mgr.smithi046.lplrtl (mgr.14184) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cephadm 2024-02-23T00:30:03.243046+0000 mgr.smithi046.lplrtl (mgr.14184) 58 : cephadm [INF] Deploying daemon osd.6 on smithi142 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.276155+0000 mon.smithi046 (mon.0) 322 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cluster 2024-02-23T00:30:03.283507+0000 mon.smithi046 (mon.0) 323 : cluster [INF] osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658] boot 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cluster 2024-02-23T00:30:03.283575+0000 mon.smithi046 (mon.0) 324 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.284128+0000 mon.smithi046 (mon.0) 325 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.285140+0000 mon.smithi046 (mon.0) 326 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.285583+0000 mon.smithi046 (mon.0) 327 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.285954+0000 mon.smithi046 (mon.0) 328 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.286307+0000 mon.smithi046 (mon.0) 329 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.286671+0000 mon.smithi046 (mon.0) 330 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.287068+0000 mon.smithi046 (mon.0) 331 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:04.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.287442+0000 mon.smithi046 (mon.0) 332 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:04.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.357608+0000 mon.smithi046 (mon.0) 333 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:04.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.359602+0000 mon.smithi046 (mon.0) 334 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-23T00:30:04.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.362395+0000 mon.smithi046 (mon.0) 335 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:04.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: cephadm 2024-02-23T00:30:03.364208+0000 mgr.smithi046.lplrtl (mgr.14184) 59 : cephadm [INF] Deploying daemon osd.5 on smithi046 2024-02-23T00:30:04.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:04 smithi046 bash[16275]: audit 2024-02-23T00:30:03.740946+0000 mon.smithi046 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.46:0/3982934544' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:04.731 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1708648203,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:30:04.749 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cluster 2024-02-23T00:30:01.657273+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:04.749 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cluster 2024-02-23T00:30:01.657391+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:04.749 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cluster 2024-02-23T00:30:03.100857+0000 mgr.smithi046.lplrtl (mgr.14184) 57 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cephadm 2024-02-23T00:30:03.243046+0000 mgr.smithi046.lplrtl (mgr.14184) 58 : cephadm [INF] Deploying daemon osd.6 on smithi142 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.276155+0000 mon.smithi046 (mon.0) 322 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cluster 2024-02-23T00:30:03.283507+0000 mon.smithi046 (mon.0) 323 : cluster [INF] osd.0 [v2:172.21.15.142:6800/2911575658,v1:172.21.15.142:6801/2911575658] boot 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cluster 2024-02-23T00:30:03.283575+0000 mon.smithi046 (mon.0) 324 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.284128+0000 mon.smithi046 (mon.0) 325 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.285140+0000 mon.smithi046 (mon.0) 326 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.285583+0000 mon.smithi046 (mon.0) 327 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.285954+0000 mon.smithi046 (mon.0) 328 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.286307+0000 mon.smithi046 (mon.0) 329 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.286671+0000 mon.smithi046 (mon.0) 330 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.287068+0000 mon.smithi046 (mon.0) 331 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.287442+0000 mon.smithi046 (mon.0) 332 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.357608+0000 mon.smithi046 (mon.0) 333 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:04.750 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.359602+0000 mon.smithi046 (mon.0) 334 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-23T00:30:04.751 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.362395+0000 mon.smithi046 (mon.0) 335 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:04.751 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: cephadm 2024-02-23T00:30:03.364208+0000 mgr.smithi046.lplrtl (mgr.14184) 59 : cephadm [INF] Deploying daemon osd.5 on smithi046 2024-02-23T00:30:04.751 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:04 smithi142 bash[20802]: audit 2024-02-23T00:30:03.740946+0000 mon.smithi046 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.46:0/3982934544' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:05.637 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: cluster 2024-02-23T00:30:04.361501+0000 mon.smithi046 (mon.0) 337 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.361743+0000 mon.smithi046 (mon.0) 338 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.362414+0000 mon.smithi046 (mon.0) 339 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.362817+0000 mon.smithi046 (mon.0) 340 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.363441+0000 mon.smithi046 (mon.0) 341 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.364193+0000 mon.smithi046 (mon.0) 342 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.364440+0000 mon.smithi046 (mon.0) 343 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:04.364778+0000 mon.smithi046 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:05.638 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:05 smithi142 bash[20802]: audit 2024-02-23T00:30:05.095374+0000 mon.smithi046 (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-23T00:30:05.732 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:30:05.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: cluster 2024-02-23T00:30:04.361501+0000 mon.smithi046 (mon.0) 337 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.361743+0000 mon.smithi046 (mon.0) 338 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.362414+0000 mon.smithi046 (mon.0) 339 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.362817+0000 mon.smithi046 (mon.0) 340 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.363441+0000 mon.smithi046 (mon.0) 341 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.364193+0000 mon.smithi046 (mon.0) 342 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.364440+0000 mon.smithi046 (mon.0) 343 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:04.364778+0000 mon.smithi046 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:05 smithi046 bash[16275]: audit 2024-02-23T00:30:05.095374+0000 mon.smithi046 (mon.0) 345 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: cluster 2024-02-23T00:30:05.101164+0000 mgr.smithi046.lplrtl (mgr.14184) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.369724+0000 mon.smithi046 (mon.0) 346 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: cluster 2024-02-23T00:30:05.369862+0000 mon.smithi046 (mon.0) 347 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.370429+0000 mon.smithi046 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.371346+0000 mon.smithi046 (mon.0) 349 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.371744+0000 mon.smithi046 (mon.0) 350 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.372058+0000 mon.smithi046 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.372300+0000 mon.smithi046 (mon.0) 352 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.372602+0000 mon.smithi046 (mon.0) 353 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.372880+0000 mon.smithi046 (mon.0) 354 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.373171+0000 mon.smithi046 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.928448+0000 mon.smithi142 (mon.1) 11 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-23T00:30:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:06 smithi046 bash[16275]: audit 2024-02-23T00:30:05.928593+0000 mon.smithi046 (mon.0) 356 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: cluster 2024-02-23T00:30:05.101164+0000 mgr.smithi046.lplrtl (mgr.14184) 60 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.369724+0000 mon.smithi046 (mon.0) 346 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: cluster 2024-02-23T00:30:05.369862+0000 mon.smithi046 (mon.0) 347 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.370429+0000 mon.smithi046 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.371346+0000 mon.smithi046 (mon.0) 349 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.371744+0000 mon.smithi046 (mon.0) 350 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.372058+0000 mon.smithi046 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.372300+0000 mon.smithi046 (mon.0) 352 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.372602+0000 mon.smithi046 (mon.0) 353 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.372880+0000 mon.smithi046 (mon.0) 354 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.373171+0000 mon.smithi046 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.928448+0000 mon.smithi142 (mon.1) 11 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-23T00:30:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:06 smithi142 bash[20802]: audit 2024-02-23T00:30:05.928593+0000 mon.smithi046 (mon.0) 356 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.371935+0000 mon.smithi046 (mon.0) 357 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.372094+0000 mon.smithi046 (mon.0) 358 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: cluster 2024-02-23T00:30:06.372303+0000 mon.smithi046 (mon.0) 359 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.373215+0000 mon.smithi046 (mon.0) 360 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.374005+0000 mon.smithi046 (mon.0) 361 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.374309+0000 mon.smithi142 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:07.674 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.381444+0000 mon.smithi046 (mon.0) 362 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:07.675 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.381784+0000 mon.smithi046 (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:07.675 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.382144+0000 mon.smithi046 (mon.0) 364 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:07.675 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.382400+0000 mon.smithi046 (mon.0) 365 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:07.675 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.382689+0000 mon.smithi046 (mon.0) 366 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:07.675 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.382998+0000 mon.smithi046 (mon.0) 367 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:07.676 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:07 smithi142 bash[20802]: audit 2024-02-23T00:30:06.384849+0000 mon.smithi046 (mon.0) 368 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.371935+0000 mon.smithi046 (mon.0) 357 : audit [INF] from='osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.372094+0000 mon.smithi046 (mon.0) 358 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-23T00:30:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: cluster 2024-02-23T00:30:06.372303+0000 mon.smithi046 (mon.0) 359 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-23T00:30:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.373215+0000 mon.smithi046 (mon.0) 360 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.374005+0000 mon.smithi046 (mon.0) 361 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.374309+0000 mon.smithi142 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.381444+0000 mon.smithi046 (mon.0) 362 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.381784+0000 mon.smithi046 (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.382144+0000 mon.smithi046 (mon.0) 364 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.382400+0000 mon.smithi046 (mon.0) 365 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.382689+0000 mon.smithi046 (mon.0) 366 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.382998+0000 mon.smithi046 (mon.0) 367 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:07 smithi046 bash[16275]: audit 2024-02-23T00:30:06.384849+0000 mon.smithi046 (mon.0) 368 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: cluster 2024-02-23T00:30:06.057155+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: cluster 2024-02-23T00:30:06.057266+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: cluster 2024-02-23T00:30:07.101628+0000 mgr.smithi046.lplrtl (mgr.14184) 61 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.382773+0000 mon.smithi046 (mon.0) 369 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: cluster 2024-02-23T00:30:07.382984+0000 mon.smithi046 (mon.0) 370 : cluster [INF] osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360] boot 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: cluster 2024-02-23T00:30:07.383079+0000 mon.smithi046 (mon.0) 371 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-23T00:30:08.658 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.384203+0000 mon.smithi046 (mon.0) 372 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.384946+0000 mon.smithi046 (mon.0) 373 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.391934+0000 mon.smithi046 (mon.0) 374 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.392289+0000 mon.smithi046 (mon.0) 375 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.392694+0000 mon.smithi046 (mon.0) 376 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.393061+0000 mon.smithi046 (mon.0) 377 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.393425+0000 mon.smithi046 (mon.0) 378 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:08.659 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:08 smithi142 bash[20802]: audit 2024-02-23T00:30:07.393839+0000 mon.smithi046 (mon.0) 379 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: cluster 2024-02-23T00:30:06.057155+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: cluster 2024-02-23T00:30:06.057266+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: cluster 2024-02-23T00:30:07.101628+0000 mgr.smithi046.lplrtl (mgr.14184) 61 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.382773+0000 mon.smithi046 (mon.0) 369 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: cluster 2024-02-23T00:30:07.382984+0000 mon.smithi046 (mon.0) 370 : cluster [INF] osd.1 [v2:172.21.15.46:6802/2315192360,v1:172.21.15.46:6803/2315192360] boot 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: cluster 2024-02-23T00:30:07.383079+0000 mon.smithi046 (mon.0) 371 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.384203+0000 mon.smithi046 (mon.0) 372 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.384946+0000 mon.smithi046 (mon.0) 373 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.391934+0000 mon.smithi046 (mon.0) 374 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.392289+0000 mon.smithi046 (mon.0) 375 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.392694+0000 mon.smithi046 (mon.0) 376 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:08.691 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.393061+0000 mon.smithi046 (mon.0) 377 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:08.692 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.393425+0000 mon.smithi046 (mon.0) 378 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:08.692 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:08 smithi046 bash[16275]: audit 2024-02-23T00:30:07.393839+0000 mon.smithi046 (mon.0) 379 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:09.672 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: cluster 2024-02-23T00:30:06.940812+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:09.672 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: cluster 2024-02-23T00:30:06.940908+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:09.672 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: cluster 2024-02-23T00:30:08.393455+0000 mon.smithi046 (mon.0) 380 : cluster [INF] osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152] boot 2024-02-23T00:30:09.672 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: cluster 2024-02-23T00:30:08.393553+0000 mon.smithi046 (mon.0) 381 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-02-23T00:30:09.672 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.394295+0000 mon.smithi046 (mon.0) 382 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.395533+0000 mon.smithi046 (mon.0) 383 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.401530+0000 mon.smithi046 (mon.0) 384 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.401983+0000 mon.smithi046 (mon.0) 385 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.402429+0000 mon.smithi046 (mon.0) 386 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.402884+0000 mon.smithi046 (mon.0) 387 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.403340+0000 mon.smithi046 (mon.0) 388 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:08.872086+0000 mon.smithi046 (mon.0) 389 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:09.382428+0000 mon.smithi046 (mon.0) 390 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:09.383383+0000 mon.smithi046 (mon.0) 391 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-23T00:30:09.673 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:09 smithi142 bash[20802]: audit 2024-02-23T00:30:09.384268+0000 mon.smithi046 (mon.0) 392 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:09.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: cluster 2024-02-23T00:30:06.940812+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:09.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: cluster 2024-02-23T00:30:06.940908+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:09.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: cluster 2024-02-23T00:30:08.393455+0000 mon.smithi046 (mon.0) 380 : cluster [INF] osd.2 [v2:172.21.15.142:6808/1167585152,v1:172.21.15.142:6809/1167585152] boot 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: cluster 2024-02-23T00:30:08.393553+0000 mon.smithi046 (mon.0) 381 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.394295+0000 mon.smithi046 (mon.0) 382 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.395533+0000 mon.smithi046 (mon.0) 383 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.401530+0000 mon.smithi046 (mon.0) 384 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.401983+0000 mon.smithi046 (mon.0) 385 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.402429+0000 mon.smithi046 (mon.0) 386 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.402884+0000 mon.smithi046 (mon.0) 387 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.403340+0000 mon.smithi046 (mon.0) 388 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:08.872086+0000 mon.smithi046 (mon.0) 389 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:09.382428+0000 mon.smithi046 (mon.0) 390 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:09.383383+0000 mon.smithi046 (mon.0) 391 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-23T00:30:09.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:09 smithi046 bash[16275]: audit 2024-02-23T00:30:09.384268+0000 mon.smithi046 (mon.0) 392 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: cluster 2024-02-23T00:30:09.102122+0000 mgr.smithi046.lplrtl (mgr.14184) 62 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: cephadm 2024-02-23T00:30:09.385112+0000 mgr.smithi046.lplrtl (mgr.14184) 63 : cephadm [INF] Deploying daemon osd.7 on smithi046 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.406732+0000 mon.smithi046 (mon.0) 393 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: cluster 2024-02-23T00:30:09.406883+0000 mon.smithi046 (mon.0) 394 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.407106+0000 mon.smithi046 (mon.0) 395 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.407577+0000 mon.smithi046 (mon.0) 396 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.407908+0000 mon.smithi046 (mon.0) 397 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.408229+0000 mon.smithi046 (mon.0) 398 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.408585+0000 mon.smithi046 (mon.0) 399 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:10 smithi142 bash[20802]: audit 2024-02-23T00:30:09.409365+0000 mon.smithi046 (mon.0) 400 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: cluster 2024-02-23T00:30:09.102122+0000 mgr.smithi046.lplrtl (mgr.14184) 62 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: cephadm 2024-02-23T00:30:09.385112+0000 mgr.smithi046.lplrtl (mgr.14184) 63 : cephadm [INF] Deploying daemon osd.7 on smithi046 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.406732+0000 mon.smithi046 (mon.0) 393 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: cluster 2024-02-23T00:30:09.406883+0000 mon.smithi046 (mon.0) 394 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.407106+0000 mon.smithi046 (mon.0) 395 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.407577+0000 mon.smithi046 (mon.0) 396 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.407908+0000 mon.smithi046 (mon.0) 397 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.408229+0000 mon.smithi046 (mon.0) 398 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.408585+0000 mon.smithi046 (mon.0) 399 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:10.758 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:10 smithi046 bash[16275]: audit 2024-02-23T00:30:09.409365+0000 mon.smithi046 (mon.0) 400 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-23T00:30:10.906 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:11.466 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.412315+0000 mon.smithi046 (mon.0) 401 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-23T00:30:11.466 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: cluster 2024-02-23T00:30:10.412523+0000 mon.smithi046 (mon.0) 402 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-02-23T00:30:11.466 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.413503+0000 mon.smithi046 (mon.0) 403 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:11.466 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.414570+0000 mon.smithi046 (mon.0) 404 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.412315+0000 mon.smithi046 (mon.0) 401 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: cluster 2024-02-23T00:30:10.412523+0000 mon.smithi046 (mon.0) 402 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.413503+0000 mon.smithi046 (mon.0) 403 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.414570+0000 mon.smithi046 (mon.0) 404 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.419240+0000 mon.smithi046 (mon.0) 405 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.419544+0000 mon.smithi046 (mon.0) 406 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.419846+0000 mon.smithi046 (mon.0) 407 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:10.903819+0000 mon.smithi046 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.46:0/270226293' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:11.189679+0000 mon.smithi046 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-23T00:30:11.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:11 smithi142 bash[20802]: audit 2024-02-23T00:30:11.189839+0000 mon.smithi142 (mon.1) 13 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.419240+0000 mon.smithi046 (mon.0) 405 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.419544+0000 mon.smithi046 (mon.0) 406 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.419846+0000 mon.smithi046 (mon.0) 407 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:10.903819+0000 mon.smithi046 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.46:0/270226293' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:11.189679+0000 mon.smithi046 (mon.0) 409 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-23T00:30:11.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:11 smithi046 bash[16275]: audit 2024-02-23T00:30:11.189839+0000 mon.smithi142 (mon.1) 13 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-23T00:30:11.895 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":23,"num_osds":8,"num_up_osds":3,"osd_up_since":1708648208,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: cluster 2024-02-23T00:30:11.102505+0000 mgr.smithi046.lplrtl (mgr.14184) 64 : cluster [DBG] pgmap v59: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.425798+0000 mon.smithi046 (mon.0) 410 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: cluster 2024-02-23T00:30:11.425859+0000 mon.smithi046 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.426001+0000 mon.smithi046 (mon.0) 412 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.426552+0000 mon.smithi046 (mon.0) 413 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.426833+0000 mon.smithi046 (mon.0) 414 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.427094+0000 mon.smithi046 (mon.0) 415 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.427354+0000 mon.smithi046 (mon.0) 416 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:12.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.430086+0000 mon.smithi046 (mon.0) 417 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:12.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.430212+0000 mon.smithi142 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:12.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:12 smithi046 bash[16275]: audit 2024-02-23T00:30:11.676718+0000 mon.smithi046 (mon.0) 418 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-23T00:30:12.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: cluster 2024-02-23T00:30:11.102505+0000 mgr.smithi046.lplrtl (mgr.14184) 64 : cluster [DBG] pgmap v59: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.425798+0000 mon.smithi046 (mon.0) 410 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: cluster 2024-02-23T00:30:11.425859+0000 mon.smithi046 (mon.0) 411 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.426001+0000 mon.smithi046 (mon.0) 412 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.426552+0000 mon.smithi046 (mon.0) 413 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.426833+0000 mon.smithi046 (mon.0) 414 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.427094+0000 mon.smithi046 (mon.0) 415 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.427354+0000 mon.smithi046 (mon.0) 416 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.430086+0000 mon.smithi046 (mon.0) 417 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.430212+0000 mon.smithi142 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:12 smithi142 bash[20802]: audit 2024-02-23T00:30:11.676718+0000 mon.smithi046 (mon.0) 418 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-23T00:30:12.896 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:30:13.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.428560+0000 mon.smithi046 (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=smithi142", "root=default"]}]': finished 2024-02-23T00:30:13.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.428653+0000 mon.smithi046 (mon.0) 420 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-23T00:30:13.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: cluster 2024-02-23T00:30:12.428710+0000 mon.smithi046 (mon.0) 421 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-23T00:30:13.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.429157+0000 mon.smithi046 (mon.0) 422 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.429598+0000 mon.smithi046 (mon.0) 423 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.429843+0000 mon.smithi046 (mon.0) 424 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.430133+0000 mon.smithi046 (mon.0) 425 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.430333+0000 mon.smithi046 (mon.0) 426 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.430580+0000 mon.smithi046 (mon.0) 427 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:13 smithi046 bash[16275]: audit 2024-02-23T00:30:12.439300+0000 mon.smithi046 (mon.0) 428 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.428560+0000 mon.smithi046 (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=smithi142", "root=default"]}]': finished 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.428653+0000 mon.smithi046 (mon.0) 420 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: cluster 2024-02-23T00:30:12.428710+0000 mon.smithi046 (mon.0) 421 : cluster [DBG] osdmap e25: 8 total, 3 up, 8 in 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.429157+0000 mon.smithi046 (mon.0) 422 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.429598+0000 mon.smithi046 (mon.0) 423 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.429843+0000 mon.smithi046 (mon.0) 424 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.430133+0000 mon.smithi046 (mon.0) 425 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.430333+0000 mon.smithi046 (mon.0) 426 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.430580+0000 mon.smithi046 (mon.0) 427 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:13 smithi142 bash[20802]: audit 2024-02-23T00:30:12.439300+0000 mon.smithi046 (mon.0) 428 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:12.210821+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:12.210940+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:13.102883+0000 mgr.smithi046.lplrtl (mgr.14184) 65 : cluster [DBG] pgmap v62: 1 pgs: 1 active+clean; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-23T00:30:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.433653+0000 mon.smithi046 (mon.0) 429 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:13.433901+0000 mon.smithi046 (mon.0) 430 : cluster [INF] osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416] boot 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:13.434029+0000 mon.smithi046 (mon.0) 431 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.434299+0000 mon.smithi046 (mon.0) 432 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.435155+0000 mon.smithi046 (mon.0) 433 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.438310+0000 mon.smithi046 (mon.0) 434 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.438843+0000 mon.smithi046 (mon.0) 435 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.439076+0000 mon.smithi046 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:13.439748+0000 mon.smithi046 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:14.434464+0000 mon.smithi046 (mon.0) 438 : cluster [INF] osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075] boot 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: cluster 2024-02-23T00:30:14.434527+0000 mon.smithi046 (mon.0) 439 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:14.435024+0000 mon.smithi046 (mon.0) 440 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:14.435544+0000 mon.smithi046 (mon.0) 441 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:14.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:14.435963+0000 mon.smithi046 (mon.0) 442 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:14.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:14 smithi046 bash[16275]: audit 2024-02-23T00:30:14.436403+0000 mon.smithi046 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:12.210821+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:12.210940+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:13.102883+0000 mgr.smithi046.lplrtl (mgr.14184) 65 : cluster [DBG] pgmap v62: 1 pgs: 1 active+clean; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.433653+0000 mon.smithi046 (mon.0) 429 : audit [INF] from='osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:13.433901+0000 mon.smithi046 (mon.0) 430 : cluster [INF] osd.4 [v2:172.21.15.142:6816/3643231416,v1:172.21.15.142:6817/3643231416] boot 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:13.434029+0000 mon.smithi046 (mon.0) 431 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-23T00:30:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.434299+0000 mon.smithi046 (mon.0) 432 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.435155+0000 mon.smithi046 (mon.0) 433 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.438310+0000 mon.smithi046 (mon.0) 434 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.438843+0000 mon.smithi046 (mon.0) 435 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.439076+0000 mon.smithi046 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:13.439748+0000 mon.smithi046 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:14.434464+0000 mon.smithi046 (mon.0) 438 : cluster [INF] osd.3 [v2:172.21.15.46:6810/4283662075,v1:172.21.15.46:6811/4283662075] boot 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: cluster 2024-02-23T00:30:14.434527+0000 mon.smithi046 (mon.0) 439 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:14.435024+0000 mon.smithi046 (mon.0) 440 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:14.435544+0000 mon.smithi046 (mon.0) 441 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:14.435963+0000 mon.smithi046 (mon.0) 442 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:14 smithi142 bash[20802]: audit 2024-02-23T00:30:14.436403+0000 mon.smithi046 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: cluster 2024-02-23T00:30:12.704475+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: cluster 2024-02-23T00:30:12.704597+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: cluster 2024-02-23T00:30:14.548770+0000 mon.smithi046 (mon.0) 444 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: audit 2024-02-23T00:30:14.549072+0000 mon.smithi046 (mon.0) 445 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: audit 2024-02-23T00:30:14.549848+0000 mon.smithi046 (mon.0) 446 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: audit 2024-02-23T00:30:14.550080+0000 mon.smithi046 (mon.0) 447 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:15.928 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:15 smithi142 bash[20802]: cluster 2024-02-23T00:30:15.103382+0000 mgr.smithi046.lplrtl (mgr.14184) 66 : cluster [DBG] pgmap v66: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: cluster 2024-02-23T00:30:12.704475+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: cluster 2024-02-23T00:30:12.704597+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: cluster 2024-02-23T00:30:14.548770+0000 mon.smithi046 (mon.0) 444 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: audit 2024-02-23T00:30:14.549072+0000 mon.smithi046 (mon.0) 445 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: audit 2024-02-23T00:30:14.549848+0000 mon.smithi046 (mon.0) 446 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:15.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: audit 2024-02-23T00:30:14.550080+0000 mon.smithi046 (mon.0) 447 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:15.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:15 smithi046 bash[16275]: cluster 2024-02-23T00:30:15.103382+0000 mgr.smithi046.lplrtl (mgr.14184) 66 : cluster [DBG] pgmap v66: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: cluster 2024-02-23T00:30:15.554108+0000 mon.smithi046 (mon.0) 448 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.554467+0000 mon.smithi046 (mon.0) 449 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.554886+0000 mon.smithi046 (mon.0) 450 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.555435+0000 mon.smithi046 (mon.0) 451 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.555709+0000 mon.smithi046 (mon.0) 452 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.734944+0000 mon.smithi046 (mon.0) 453 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-23T00:30:16.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:16 smithi046 bash[16275]: audit 2024-02-23T00:30:15.735049+0000 mon.smithi142 (mon.1) 15 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-23T00:30:17.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: cluster 2024-02-23T00:30:15.554108+0000 mon.smithi046 (mon.0) 448 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.554467+0000 mon.smithi046 (mon.0) 449 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.554886+0000 mon.smithi046 (mon.0) 450 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.555435+0000 mon.smithi046 (mon.0) 451 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.555709+0000 mon.smithi046 (mon.0) 452 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.734944+0000 mon.smithi046 (mon.0) 453 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-23T00:30:17.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:16 smithi142 bash[20802]: audit 2024-02-23T00:30:15.735049+0000 mon.smithi142 (mon.1) 15 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-23T00:30:17.112 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:17.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.563421+0000 mon.smithi046 (mon.0) 454 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: cluster 2024-02-23T00:30:16.563490+0000 mon.smithi046 (mon.0) 455 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.563714+0000 mon.smithi046 (mon.0) 456 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.564316+0000 mon.smithi046 (mon.0) 457 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.564746+0000 mon.smithi046 (mon.0) 458 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.565781+0000 mon.smithi046 (mon.0) 459 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:16.565935+0000 mon.smithi142 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:17.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: cluster 2024-02-23T00:30:17.103976+0000 mgr.smithi046.lplrtl (mgr.14184) 67 : cluster [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:17.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:17 smithi142 bash[20802]: audit 2024-02-23T00:30:17.110092+0000 mon.smithi046 (mon.0) 460 : audit [DBG] from='client.? 172.21.15.46:0/209377532' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.563421+0000 mon.smithi046 (mon.0) 454 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: cluster 2024-02-23T00:30:16.563490+0000 mon.smithi046 (mon.0) 455 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.563714+0000 mon.smithi046 (mon.0) 456 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.564316+0000 mon.smithi046 (mon.0) 457 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.564746+0000 mon.smithi046 (mon.0) 458 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.565781+0000 mon.smithi046 (mon.0) 459 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:16.565935+0000 mon.smithi142 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]: dispatch 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: cluster 2024-02-23T00:30:17.103976+0000 mgr.smithi046.lplrtl (mgr.14184) 67 : cluster [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:17.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:17 smithi046 bash[16275]: audit 2024-02-23T00:30:17.110092+0000 mon.smithi046 (mon.0) 460 : audit [DBG] from='client.? 172.21.15.46:0/209377532' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:18.109 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":30,"num_osds":8,"num_up_osds":5,"osd_up_since":1708648214,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:30:18.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.565255+0000 mon.smithi046 (mon.0) 461 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:18.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: cluster 2024-02-23T00:30:17.565342+0000 mon.smithi046 (mon.0) 462 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-23T00:30:18.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.565929+0000 mon.smithi046 (mon.0) 463 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:18.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.566643+0000 mon.smithi046 (mon.0) 464 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:18.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.567337+0000 mon.smithi046 (mon.0) 465 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:18.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.573245+0000 mon.smithi046 (mon.0) 466 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:18.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:18 smithi046 bash[16275]: audit 2024-02-23T00:30:17.713869+0000 mon.smithi046 (mon.0) 467 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-23T00:30:19.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.565255+0000 mon.smithi046 (mon.0) 461 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi142", "root=default"]}]': finished 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: cluster 2024-02-23T00:30:17.565342+0000 mon.smithi046 (mon.0) 462 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.565929+0000 mon.smithi046 (mon.0) 463 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.566643+0000 mon.smithi046 (mon.0) 464 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.567337+0000 mon.smithi046 (mon.0) 465 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.573245+0000 mon.smithi046 (mon.0) 466 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:19.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:18 smithi142 bash[20802]: audit 2024-02-23T00:30:17.713869+0000 mon.smithi046 (mon.0) 467 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-23T00:30:19.111 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:30:19.855 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:16.735676+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:19.855 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:16.735758+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:19.855 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:18.575440+0000 mon.smithi046 (mon.0) 468 : cluster [INF] osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915] boot 2024-02-23T00:30:19.855 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.575600+0000 mon.smithi046 (mon.0) 469 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:18.575760+0000 mon.smithi046 (mon.0) 470 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.576494+0000 mon.smithi046 (mon.0) 471 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.577076+0000 mon.smithi046 (mon.0) 472 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.577669+0000 mon.smithi046 (mon.0) 473 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.578245+0000 mon.smithi046 (mon.0) 474 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:18.608344+0000 mon.smithi046 (mon.0) 475 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:19.104588+0000 mgr.smithi046.lplrtl (mgr.14184) 68 : cluster [DBG] pgmap v72: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:19.577486+0000 mon.smithi046 (mon.0) 476 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: cluster 2024-02-23T00:30:19.577674+0000 mon.smithi046 (mon.0) 477 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-23T00:30:19.856 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:19 smithi046 bash[16275]: audit 2024-02-23T00:30:19.577952+0000 mon.smithi046 (mon.0) 478 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:20.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:16.735676+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:20.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:16.735758+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:20.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:18.575440+0000 mon.smithi046 (mon.0) 468 : cluster [INF] osd.6 [v2:172.21.15.142:6824/1550114915,v1:172.21.15.142:6825/1550114915] boot 2024-02-23T00:30:20.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.575600+0000 mon.smithi046 (mon.0) 469 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-23T00:30:20.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:18.575760+0000 mon.smithi046 (mon.0) 470 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.576494+0000 mon.smithi046 (mon.0) 471 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.577076+0000 mon.smithi046 (mon.0) 472 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.577669+0000 mon.smithi046 (mon.0) 473 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.578245+0000 mon.smithi046 (mon.0) 474 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:18.608344+0000 mon.smithi046 (mon.0) 475 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:19.104588+0000 mgr.smithi046.lplrtl (mgr.14184) 68 : cluster [DBG] pgmap v72: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:19.577486+0000 mon.smithi046 (mon.0) 476 : audit [INF] from='osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: cluster 2024-02-23T00:30:19.577674+0000 mon.smithi046 (mon.0) 477 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-23T00:30:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:19 smithi142 bash[20802]: audit 2024-02-23T00:30:19.577952+0000 mon.smithi046 (mon.0) 478 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:20.854 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:20 smithi142 bash[20802]: audit 2024-02-23T00:30:19.579509+0000 mon.smithi046 (mon.0) 479 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:20.855 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:20 smithi142 bash[20802]: audit 2024-02-23T00:30:19.588770+0000 mon.smithi046 (mon.0) 480 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:20.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:20 smithi046 bash[16275]: audit 2024-02-23T00:30:19.579509+0000 mon.smithi046 (mon.0) 479 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:20.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:20 smithi046 bash[16275]: audit 2024-02-23T00:30:19.588770+0000 mon.smithi046 (mon.0) 480 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: cluster 2024-02-23T00:30:18.758359+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: cluster 2024-02-23T00:30:18.758460+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: cluster 2024-02-23T00:30:20.588776+0000 mon.smithi046 (mon.0) 481 : cluster [INF] osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462] boot 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: cluster 2024-02-23T00:30:20.588865+0000 mon.smithi046 (mon.0) 482 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: audit 2024-02-23T00:30:20.589615+0000 mon.smithi046 (mon.0) 483 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: audit 2024-02-23T00:30:20.590014+0000 mon.smithi046 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:21.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:21 smithi046 bash[16275]: cluster 2024-02-23T00:30:21.105107+0000 mgr.smithi046.lplrtl (mgr.14184) 69 : cluster [DBG] pgmap v75: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-23T00:30:22.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: cluster 2024-02-23T00:30:18.758359+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:22.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: cluster 2024-02-23T00:30:18.758460+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:22.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: cluster 2024-02-23T00:30:20.588776+0000 mon.smithi046 (mon.0) 481 : cluster [INF] osd.5 [v2:172.21.15.46:6818/983016462,v1:172.21.15.46:6819/983016462] boot 2024-02-23T00:30:22.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: cluster 2024-02-23T00:30:20.588865+0000 mon.smithi046 (mon.0) 482 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-02-23T00:30:22.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: audit 2024-02-23T00:30:20.589615+0000 mon.smithi046 (mon.0) 483 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-23T00:30:22.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: audit 2024-02-23T00:30:20.590014+0000 mon.smithi046 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:22.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:21 smithi142 bash[20802]: cluster 2024-02-23T00:30:21.105107+0000 mgr.smithi046.lplrtl (mgr.14184) 69 : cluster [DBG] pgmap v75: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-23T00:30:22.431 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:22.863 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:22 smithi046 bash[16275]: cluster 2024-02-23T00:30:21.603293+0000 mon.smithi046 (mon.0) 485 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-23T00:30:22.863 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:22 smithi046 bash[16275]: audit 2024-02-23T00:30:21.603561+0000 mon.smithi046 (mon.0) 486 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:22.863 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:22 smithi046 bash[16275]: audit 2024-02-23T00:30:22.429518+0000 mon.smithi046 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.46:0/1227404635' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:23.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:22 smithi142 bash[20802]: cluster 2024-02-23T00:30:21.603293+0000 mon.smithi046 (mon.0) 485 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-23T00:30:23.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:22 smithi142 bash[20802]: audit 2024-02-23T00:30:21.603561+0000 mon.smithi046 (mon.0) 486 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:23.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:22 smithi142 bash[20802]: audit 2024-02-23T00:30:22.429518+0000 mon.smithi046 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.46:0/1227404635' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:23.208 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":35,"num_osds":8,"num_up_osds":7,"osd_up_since":1708648220,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:30:23.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:23 smithi046 bash[16275]: audit 2024-02-23T00:30:22.865596+0000 mon.smithi046 (mon.0) 488 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-23T00:30:23.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:23 smithi046 bash[16275]: cluster 2024-02-23T00:30:23.105704+0000 mgr.smithi046.lplrtl (mgr.14184) 70 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-23T00:30:24.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:23 smithi142 bash[20802]: audit 2024-02-23T00:30:22.865596+0000 mon.smithi046 (mon.0) 488 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-23T00:30:24.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:23 smithi142 bash[20802]: cluster 2024-02-23T00:30:23.105704+0000 mgr.smithi046.lplrtl (mgr.14184) 70 : cluster [DBG] pgmap v77: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-23T00:30:24.209 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd stat -f json 2024-02-23T00:30:24.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:24 smithi046 bash[16275]: audit 2024-02-23T00:30:23.615585+0000 mon.smithi046 (mon.0) 489 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-23T00:30:24.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:24 smithi046 bash[16275]: cluster 2024-02-23T00:30:23.615752+0000 mon.smithi046 (mon.0) 490 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-23T00:30:24.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:24 smithi046 bash[16275]: audit 2024-02-23T00:30:23.616051+0000 mon.smithi046 (mon.0) 491 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:24.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:24 smithi046 bash[16275]: audit 2024-02-23T00:30:23.616827+0000 mon.smithi046 (mon.0) 492 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:25.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:24 smithi142 bash[20802]: audit 2024-02-23T00:30:23.615585+0000 mon.smithi046 (mon.0) 489 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-23T00:30:25.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:24 smithi142 bash[20802]: cluster 2024-02-23T00:30:23.615752+0000 mon.smithi046 (mon.0) 490 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-23T00:30:25.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:24 smithi142 bash[20802]: audit 2024-02-23T00:30:23.616051+0000 mon.smithi046 (mon.0) 491 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:25.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:24 smithi142 bash[20802]: audit 2024-02-23T00:30:23.616827+0000 mon.smithi046 (mon.0) 492 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]: dispatch 2024-02-23T00:30:25.971 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:25 smithi046 bash[16275]: audit 2024-02-23T00:30:24.620100+0000 mon.smithi046 (mon.0) 493 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:25.971 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:25 smithi046 bash[16275]: cluster 2024-02-23T00:30:24.620267+0000 mon.smithi046 (mon.0) 494 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-23T00:30:25.971 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:25 smithi046 bash[16275]: audit 2024-02-23T00:30:24.620992+0000 mon.smithi046 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:25.971 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:25 smithi046 bash[16275]: audit 2024-02-23T00:30:24.628274+0000 mon.smithi046 (mon.0) 496 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:25.971 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:25 smithi046 bash[16275]: cluster 2024-02-23T00:30:25.106330+0000 mgr.smithi046.lplrtl (mgr.14184) 71 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-23T00:30:26.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:25 smithi142 bash[20802]: audit 2024-02-23T00:30:24.620100+0000 mon.smithi046 (mon.0) 493 : audit [INF] from='osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi046", "root=default"]}]': finished 2024-02-23T00:30:26.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:25 smithi142 bash[20802]: cluster 2024-02-23T00:30:24.620267+0000 mon.smithi046 (mon.0) 494 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-23T00:30:26.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:25 smithi142 bash[20802]: audit 2024-02-23T00:30:24.620992+0000 mon.smithi046 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:26.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:25 smithi142 bash[20802]: audit 2024-02-23T00:30:24.628274+0000 mon.smithi046 (mon.0) 496 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:26.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:25 smithi142 bash[20802]: cluster 2024-02-23T00:30:25.106330+0000 mgr.smithi046.lplrtl (mgr.14184) 71 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: cluster 2024-02-23T00:30:23.838851+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: cluster 2024-02-23T00:30:23.838947+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: audit 2024-02-23T00:30:25.629297+0000 mon.smithi046 (mon.0) 497 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: cluster 2024-02-23T00:30:25.636172+0000 mon.smithi046 (mon.0) 498 : cluster [INF] osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433] boot 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: cluster 2024-02-23T00:30:25.636302+0000 mon.smithi046 (mon.0) 499 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-02-23T00:30:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:26 smithi046 bash[16275]: audit 2024-02-23T00:30:25.637651+0000 mon.smithi046 (mon.0) 500 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:27.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: cluster 2024-02-23T00:30:23.838851+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-23T00:30:27.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: cluster 2024-02-23T00:30:23.838947+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-23T00:30:27.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: audit 2024-02-23T00:30:25.629297+0000 mon.smithi046 (mon.0) 497 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:27.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: cluster 2024-02-23T00:30:25.636172+0000 mon.smithi046 (mon.0) 498 : cluster [INF] osd.7 [v2:172.21.15.46:6826/1512024433,v1:172.21.15.46:6827/1512024433] boot 2024-02-23T00:30:27.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: cluster 2024-02-23T00:30:25.636302+0000 mon.smithi046 (mon.0) 499 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-02-23T00:30:27.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:26 smithi142 bash[20802]: audit 2024-02-23T00:30:25.637651+0000 mon.smithi046 (mon.0) 500 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-23T00:30:27.928 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: cluster 2024-02-23T00:30:26.646186+0000 mon.smithi046 (mon.0) 501 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-23T00:30:27.928 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: cluster 2024-02-23T00:30:27.106917+0000 mgr.smithi046.lplrtl (mgr.14184) 72 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: audit 2024-02-23T00:30:27.119060+0000 mon.smithi046 (mon.0) 502 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: cephadm 2024-02-23T00:30:27.120903+0000 mgr.smithi046.lplrtl (mgr.14184) 73 : cephadm [INF] Reconfiguring mon.smithi046 (unknown last config time)... 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: audit 2024-02-23T00:30:27.121459+0000 mon.smithi046 (mon.0) 503 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: audit 2024-02-23T00:30:27.122920+0000 mon.smithi046 (mon.0) 504 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: audit 2024-02-23T00:30:27.124428+0000 mon.smithi046 (mon.0) 505 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:27.929 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:27 smithi046 bash[16275]: cephadm 2024-02-23T00:30:27.125804+0000 mgr.smithi046.lplrtl (mgr.14184) 74 : cephadm [INF] Reconfiguring daemon mon.smithi046 on smithi046 2024-02-23T00:30:28.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: cluster 2024-02-23T00:30:26.646186+0000 mon.smithi046 (mon.0) 501 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: cluster 2024-02-23T00:30:27.106917+0000 mgr.smithi046.lplrtl (mgr.14184) 72 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: audit 2024-02-23T00:30:27.119060+0000 mon.smithi046 (mon.0) 502 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: cephadm 2024-02-23T00:30:27.120903+0000 mgr.smithi046.lplrtl (mgr.14184) 73 : cephadm [INF] Reconfiguring mon.smithi046 (unknown last config time)... 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: audit 2024-02-23T00:30:27.121459+0000 mon.smithi046 (mon.0) 503 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: audit 2024-02-23T00:30:27.122920+0000 mon.smithi046 (mon.0) 504 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: audit 2024-02-23T00:30:27.124428+0000 mon.smithi046 (mon.0) 505 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:28.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:27 smithi142 bash[20802]: cephadm 2024-02-23T00:30:27.125804+0000 mgr.smithi046.lplrtl (mgr.14184) 74 : cephadm [INF] Reconfiguring daemon mon.smithi046 on smithi046 2024-02-23T00:30:28.259 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:28.936 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:28 smithi046 bash[16275]: cluster 2024-02-23T00:30:27.657715+0000 mon.smithi046 (mon.0) 506 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-23T00:30:28.937 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:28 smithi046 bash[16275]: audit 2024-02-23T00:30:28.257914+0000 mon.smithi046 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.46:0/3381539671' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:28.938 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":40,"num_osds":8,"num_up_osds":8,"osd_up_since":1708648225,"num_in_osds":8,"osd_in_since":1708648178,"num_remapped_pgs":0} 2024-02-23T00:30:28.938 INFO:tasks.cephadm:Setting up client nodes... 2024-02-23T00:30:28.939 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-23T00:30:29.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:28 smithi142 bash[20802]: cluster 2024-02-23T00:30:27.657715+0000 mon.smithi046 (mon.0) 506 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-23T00:30:29.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:28 smithi142 bash[20802]: audit 2024-02-23T00:30:28.257914+0000 mon.smithi046 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.46:0/3381539671' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-23T00:30:29.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:29 smithi046 bash[16275]: cluster 2024-02-23T00:30:29.107593+0000 mgr.smithi046.lplrtl (mgr.14184) 75 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:29.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:29 smithi046 bash[16275]: audit 2024-02-23T00:30:29.632177+0000 mon.smithi046 (mon.0) 508 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:29.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:29 smithi046 bash[16275]: audit 2024-02-23T00:30:29.634110+0000 mon.smithi046 (mon.0) 509 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi046.lplrtl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-23T00:30:29.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:29 smithi046 bash[16275]: audit 2024-02-23T00:30:29.635761+0000 mon.smithi046 (mon.0) 510 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-23T00:30:29.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:29 smithi046 bash[16275]: audit 2024-02-23T00:30:29.637127+0000 mon.smithi046 (mon.0) 511 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:30.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:29 smithi142 bash[20802]: cluster 2024-02-23T00:30:29.107593+0000 mgr.smithi046.lplrtl (mgr.14184) 75 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:30.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:29 smithi142 bash[20802]: audit 2024-02-23T00:30:29.632177+0000 mon.smithi046 (mon.0) 508 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:30.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:29 smithi142 bash[20802]: audit 2024-02-23T00:30:29.634110+0000 mon.smithi046 (mon.0) 509 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi046.lplrtl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-23T00:30:30.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:29 smithi142 bash[20802]: audit 2024-02-23T00:30:29.635761+0000 mon.smithi046 (mon.0) 510 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-23T00:30:30.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:29 smithi142 bash[20802]: audit 2024-02-23T00:30:29.637127+0000 mon.smithi046 (mon.0) 511 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:30.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:30 smithi046 bash[16275]: cephadm 2024-02-23T00:30:29.633525+0000 mgr.smithi046.lplrtl (mgr.14184) 76 : cephadm [INF] Reconfiguring mgr.smithi046.lplrtl (unknown last config time)... 2024-02-23T00:30:30.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:30 smithi046 bash[16275]: cephadm 2024-02-23T00:30:29.638407+0000 mgr.smithi046.lplrtl (mgr.14184) 77 : cephadm [INF] Reconfiguring daemon mgr.smithi046.lplrtl on smithi046 2024-02-23T00:30:31.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:30 smithi142 bash[20802]: cephadm 2024-02-23T00:30:29.633525+0000 mgr.smithi046.lplrtl (mgr.14184) 76 : cephadm [INF] Reconfiguring mgr.smithi046.lplrtl (unknown last config time)... 2024-02-23T00:30:31.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:30 smithi142 bash[20802]: cephadm 2024-02-23T00:30:29.638407+0000 mgr.smithi046.lplrtl (mgr.14184) 77 : cephadm [INF] Reconfiguring daemon mgr.smithi046.lplrtl on smithi046 2024-02-23T00:30:31.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:31 smithi046 bash[16275]: cluster 2024-02-23T00:30:31.108252+0000 mgr.smithi046.lplrtl (mgr.14184) 78 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:32.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:31 smithi142 bash[20802]: cluster 2024-02-23T00:30:31.108252+0000 mgr.smithi046.lplrtl (mgr.14184) 78 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:33.186 INFO:teuthology.orchestra.run.smithi046.stdout:[client.0] 2024-02-23T00:30:33.187 INFO:teuthology.orchestra.run.smithi046.stdout: key = AQAp59dlkiifChAAJG86zgW5L3r2r0tC7R9jiw== 2024-02-23T00:30:34.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: audit 2024-02-23T00:30:32.652087+0000 mon.smithi046 (mon.0) 512 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:34.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: cephadm 2024-02-23T00:30:32.653681+0000 mgr.smithi046.lplrtl (mgr.14184) 79 : cephadm [INF] Reconfiguring alertmanager.smithi046 (dependencies changed)... 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: cephadm 2024-02-23T00:30:32.663616+0000 mgr.smithi046.lplrtl (mgr.14184) 80 : cephadm [INF] Reconfiguring daemon alertmanager.smithi046 on smithi046 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: cluster 2024-02-23T00:30:33.108765+0000 mgr.smithi046.lplrtl (mgr.14184) 81 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: audit 2024-02-23T00:30:33.177830+0000 mon.smithi046 (mon.0) 513 : audit [INF] from='client.? 172.21.15.46:0/2994432104' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:33 smithi142 bash[20802]: audit 2024-02-23T00:30:33.184830+0000 mon.smithi046 (mon.0) 514 : audit [INF] from='client.? 172.21.15.46:0/2994432104' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: audit 2024-02-23T00:30:32.652087+0000 mon.smithi046 (mon.0) 512 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: cephadm 2024-02-23T00:30:32.653681+0000 mgr.smithi046.lplrtl (mgr.14184) 79 : cephadm [INF] Reconfiguring alertmanager.smithi046 (dependencies changed)... 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: cephadm 2024-02-23T00:30:32.663616+0000 mgr.smithi046.lplrtl (mgr.14184) 80 : cephadm [INF] Reconfiguring daemon alertmanager.smithi046 on smithi046 2024-02-23T00:30:34.007 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: cluster 2024-02-23T00:30:33.108765+0000 mgr.smithi046.lplrtl (mgr.14184) 81 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:34.008 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: audit 2024-02-23T00:30:33.177830+0000 mon.smithi046 (mon.0) 513 : audit [INF] from='client.? 172.21.15.46:0/2994432104' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-23T00:30:34.008 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:33 smithi046 bash[16275]: audit 2024-02-23T00:30:33.184830+0000 mon.smithi046 (mon.0) 514 : audit [INF] from='client.? 172.21.15.46:0/2994432104' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-23T00:30:34.199 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T00:30:34.199 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-23T00:30:34.200 DEBUG:teuthology.orchestra.run.smithi046:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-23T00:30:34.224 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-23T00:30:36.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:36 smithi046 bash[16275]: cluster 2024-02-23T00:30:35.109365+0000 mgr.smithi046.lplrtl (mgr.14184) 82 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:36.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:36 smithi142 bash[20802]: cluster 2024-02-23T00:30:35.109365+0000 mgr.smithi046.lplrtl (mgr.14184) 82 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:37.447 INFO:teuthology.orchestra.run.smithi142.stdout:[client.1] 2024-02-23T00:30:37.448 INFO:teuthology.orchestra.run.smithi142.stdout: key = AQAt59dlenAgGhAA7ZbHmyfElOOYC+0dEOBaaQ== 2024-02-23T00:30:38.038 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T00:30:38.038 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-23T00:30:38.039 DEBUG:teuthology.orchestra.run.smithi142:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-23T00:30:38.059 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: cluster 2024-02-23T00:30:37.110005+0000 mgr.smithi046.lplrtl (mgr.14184) 83 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.437928+0000 mon.smithi142 (mon.1) 17 : audit [INF] from='client.? 172.21.15.142:0/3364932530' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.438076+0000 mon.smithi046 (mon.0) 515 : 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-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.444837+0000 mon.smithi046 (mon.0) 516 : 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-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.484716+0000 mon.smithi046 (mon.0) 517 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.486578+0000 mon.smithi046 (mon.0) 518 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi046", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:30:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:38 smithi046 bash[16275]: audit 2024-02-23T00:30:37.488036+0000 mon.smithi046 (mon.0) 519 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:38.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: cluster 2024-02-23T00:30:37.110005+0000 mgr.smithi046.lplrtl (mgr.14184) 83 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:38.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.437928+0000 mon.smithi142 (mon.1) 17 : audit [INF] from='client.? 172.21.15.142:0/3364932530' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-23T00:30:38.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.438076+0000 mon.smithi046 (mon.0) 515 : 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-02-23T00:30:38.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.444837+0000 mon.smithi046 (mon.0) 516 : 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-02-23T00:30:38.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.484716+0000 mon.smithi046 (mon.0) 517 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:38.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.486578+0000 mon.smithi046 (mon.0) 518 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi046", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:30:38.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:38 smithi142 bash[20802]: audit 2024-02-23T00:30:37.488036+0000 mon.smithi046 (mon.0) 519 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:39.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:39 smithi046 bash[16275]: cephadm 2024-02-23T00:30:37.486145+0000 mgr.smithi046.lplrtl (mgr.14184) 84 : cephadm [INF] Reconfiguring crash.smithi046 (monmap changed)... 2024-02-23T00:30:39.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:39 smithi046 bash[16275]: cephadm 2024-02-23T00:30:37.489166+0000 mgr.smithi046.lplrtl (mgr.14184) 85 : cephadm [INF] Reconfiguring daemon crash.smithi046 on smithi046 2024-02-23T00:30:39.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:39 smithi142 bash[20802]: cephadm 2024-02-23T00:30:37.486145+0000 mgr.smithi046.lplrtl (mgr.14184) 84 : cephadm [INF] Reconfiguring crash.smithi046 (monmap changed)... 2024-02-23T00:30:39.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:39 smithi142 bash[20802]: cephadm 2024-02-23T00:30:37.489166+0000 mgr.smithi046.lplrtl (mgr.14184) 85 : cephadm [INF] Reconfiguring daemon crash.smithi046 on smithi046 2024-02-23T00:30:40.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:40 smithi046 bash[16275]: cluster 2024-02-23T00:30:39.110433+0000 mgr.smithi046.lplrtl (mgr.14184) 86 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:40.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:40 smithi046 bash[16275]: audit 2024-02-23T00:30:39.725365+0000 mon.smithi046 (mon.0) 520 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:40.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:40 smithi142 bash[20802]: cluster 2024-02-23T00:30:39.110433+0000 mgr.smithi046.lplrtl (mgr.14184) 86 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:40.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:40 smithi142 bash[20802]: audit 2024-02-23T00:30:39.725365+0000 mon.smithi046 (mon.0) 520 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:41.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:41 smithi046 bash[16275]: cephadm 2024-02-23T00:30:39.727239+0000 mgr.smithi046.lplrtl (mgr.14184) 87 : cephadm [INF] Reconfiguring grafana.smithi046 (dependencies changed)... 2024-02-23T00:30:41.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:41 smithi046 bash[16275]: cephadm 2024-02-23T00:30:39.775945+0000 mgr.smithi046.lplrtl (mgr.14184) 88 : cephadm [INF] Reconfiguring daemon grafana.smithi046 on smithi046 2024-02-23T00:30:41.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:41 smithi142 bash[20802]: cephadm 2024-02-23T00:30:39.727239+0000 mgr.smithi046.lplrtl (mgr.14184) 87 : cephadm [INF] Reconfiguring grafana.smithi046 (dependencies changed)... 2024-02-23T00:30:41.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:41 smithi142 bash[20802]: cephadm 2024-02-23T00:30:39.775945+0000 mgr.smithi046.lplrtl (mgr.14184) 88 : cephadm [INF] Reconfiguring daemon grafana.smithi046 on smithi046 2024-02-23T00:30:42.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:42 smithi046 bash[16275]: cluster 2024-02-23T00:30:41.111045+0000 mgr.smithi046.lplrtl (mgr.14184) 89 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:42.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:42 smithi142 bash[20802]: cluster 2024-02-23T00:30:41.111045+0000 mgr.smithi046.lplrtl (mgr.14184) 89 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:42.909 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:30:44.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:44 smithi046 bash[16275]: cluster 2024-02-23T00:30:43.111656+0000 mgr.smithi046.lplrtl (mgr.14184) 90 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:44.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:44 smithi142 bash[20802]: cluster 2024-02-23T00:30:43.111656+0000 mgr.smithi046.lplrtl (mgr.14184) 90 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: audit 2024-02-23T00:30:44.586953+0000 mon.smithi046 (mon.0) 521 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: cephadm 2024-02-23T00:30:44.588444+0000 mgr.smithi046.lplrtl (mgr.14184) 91 : cephadm [INF] Reconfiguring crash.smithi142 (monmap changed)... 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: audit 2024-02-23T00:30:44.588943+0000 mon.smithi046 (mon.0) 522 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: audit 2024-02-23T00:30:44.590114+0000 mon.smithi046 (mon.0) 523 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: cephadm 2024-02-23T00:30:44.591048+0000 mgr.smithi046.lplrtl (mgr.14184) 92 : cephadm [INF] Reconfiguring daemon crash.smithi142 on smithi142 2024-02-23T00:30:45.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:45 smithi046 bash[16275]: cluster 2024-02-23T00:30:45.112259+0000 mgr.smithi046.lplrtl (mgr.14184) 93 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:45.992 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: audit 2024-02-23T00:30:44.586953+0000 mon.smithi046 (mon.0) 521 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:45.993 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: cephadm 2024-02-23T00:30:44.588444+0000 mgr.smithi046.lplrtl (mgr.14184) 91 : cephadm [INF] Reconfiguring crash.smithi142 (monmap changed)... 2024-02-23T00:30:45.993 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: audit 2024-02-23T00:30:44.588943+0000 mon.smithi046 (mon.0) 522 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi142", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-23T00:30:45.993 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: audit 2024-02-23T00:30:44.590114+0000 mon.smithi046 (mon.0) 523 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:45.993 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: cephadm 2024-02-23T00:30:44.591048+0000 mgr.smithi046.lplrtl (mgr.14184) 92 : cephadm [INF] Reconfiguring daemon crash.smithi142 on smithi142 2024-02-23T00:30:45.993 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:45 smithi142 bash[20802]: cluster 2024-02-23T00:30:45.112259+0000 mgr.smithi046.lplrtl (mgr.14184) 93 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:46.744 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:30:46.744 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":40,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","created":"2024-02-23T00:26:28.474147+0000","modified":"2024-02-23T00:30:27.644272+0000","last_up_change":"2024-02-23T00:30:25.624057+0000","last_in_change":"2024-02-23T00:29:38.718920+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-23T00:30:08.862917+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":"24","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":"6c007331-aea6-4379-a214-9011c1a654b6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6801","nonce":2911575658}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6803","nonce":2911575658}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6807","nonce":2911575658}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6805","nonce":2911575658}]},"public_addr":"172.21.15.142:6801/2911575658","cluster_addr":"172.21.15.142:6803/2911575658","heartbeat_back_addr":"172.21.15.142:6807/2911575658","heartbeat_front_addr":"172.21.15.142:6805/2911575658","state":["exists","up"]},{"osd":1,"uuid":"61b0fd98-ee1b-4417-8d2e-6fa76459c990","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6802","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6803","nonce":2315192360}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6804","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6805","nonce":2315192360}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6808","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6809","nonce":2315192360}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6806","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6807","nonce":2315192360}]},"public_addr":"172.21.15.46:6803/2315192360","cluster_addr":"172.21.15.46:6805/2315192360","heartbeat_back_addr":"172.21.15.46:6809/2315192360","heartbeat_front_addr":"172.21.15.46:6807/2315192360","state":["exists","up"]},{"osd":2,"uuid":"643bdf4b-8796-4274-afa7-650022e9b7a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6809","nonce":1167585152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6811","nonce":1167585152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6815","nonce":1167585152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6813","nonce":1167585152}]},"public_addr":"172.21.15.142:6809/1167585152","cluster_addr":"172.21.15.142:6811/1167585152","heartbeat_back_addr":"172.21.15.142:6815/1167585152","heartbeat_front_addr":"172.21.15.142:6813/1167585152","state":["exists","up"]},{"osd":3,"uuid":"637f4e1d-6985-42bb-a881-d3d57f803539","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.46:6810","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6811","nonce":4283662075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6812","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6813","nonce":4283662075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6816","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6817","nonce":4283662075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6814","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6815","nonce":4283662075}]},"public_addr":"172.21.15.46:6811/4283662075","cluster_addr":"172.21.15.46:6813/4283662075","heartbeat_back_addr":"172.21.15.46:6817/4283662075","heartbeat_front_addr":"172.21.15.46:6815/4283662075","state":["exists","up"]},{"osd":4,"uuid":"b747c553-d879-4ef2-aff0-7d27609ec57a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6817","nonce":3643231416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6819","nonce":3643231416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6823","nonce":3643231416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6821","nonce":3643231416}]},"public_addr":"172.21.15.142:6817/3643231416","cluster_addr":"172.21.15.142:6819/3643231416","heartbeat_back_addr":"172.21.15.142:6823/3643231416","heartbeat_front_addr":"172.21.15.142:6821/3643231416","state":["exists","up"]},{"osd":5,"uuid":"cef5ef86-723b-424b-a4fa-289844904124","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6818","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6819","nonce":983016462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6820","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6821","nonce":983016462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6824","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6825","nonce":983016462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6822","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6823","nonce":983016462}]},"public_addr":"172.21.15.46:6819/983016462","cluster_addr":"172.21.15.46:6821/983016462","heartbeat_back_addr":"172.21.15.46:6825/983016462","heartbeat_front_addr":"172.21.15.46:6823/983016462","state":["exists","up"]},{"osd":6,"uuid":"7d0534a4-f532-4621-8b1e-1b1a4e0fc64f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6825","nonce":1550114915}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6827","nonce":1550114915}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6831","nonce":1550114915}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6829","nonce":1550114915}]},"public_addr":"172.21.15.142:6825/1550114915","cluster_addr":"172.21.15.142:6827/1550114915","heartbeat_back_addr":"172.21.15.142:6831/1550114915","heartbeat_front_addr":"172.21.15.142:6829/1550114915","state":["exists","up"]},{"osd":7,"uuid":"871813b4-d1da-4ce3-a95e-c8bbc0018f5e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6826","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6827","nonce":1512024433}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6828","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6829","nonce":1512024433}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6832","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6833","nonce":1512024433}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6830","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6831","nonce":1512024433}]},"public_addr":"172.21.15.46:6827/1512024433","cluster_addr":"172.21.15.46:6829/1512024433","heartbeat_back_addr":"172.21.15.46:6833/1512024433","heartbeat_front_addr":"172.21.15.46:6831/1512024433","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-02-23T00:30:01.657399+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-02-23T00:30:06.057271+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-02-23T00:30:06.940913+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-02-23T00:30:12.704603+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-02-23T00:30:12.210945+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-02-23T00:30:18.758465+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-02-23T00:30:16.735763+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-02-23T00:30:23.838952+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.46:0/1672600487":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3100464934":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6800/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6801/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3772633328":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6800/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/868795743":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/985004894":"2024-02-24T00:26:56.085029+0000","172.21.15.46:0/2263444069":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6800/3872502240":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6801/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6801/3872502240":"2024-02-24T00:26:56.085029+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-02-23T00:30:47.351 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-23T00:30:08.862917+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': '24', '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-02-23T00:30:47.351 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: audit 2024-02-23T00:30:46.537547+0000 mon.smithi046 (mon.0) 524 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: cephadm 2024-02-23T00:30:46.538498+0000 mgr.smithi046.lplrtl (mgr.14184) 94 : cephadm [INF] Reconfiguring mgr.smithi142.hrzezs (monmap changed)... 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: audit 2024-02-23T00:30:46.539008+0000 mon.smithi046 (mon.0) 525 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.hrzezs", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: audit 2024-02-23T00:30:46.540177+0000 mon.smithi046 (mon.0) 526 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: audit 2024-02-23T00:30:46.547892+0000 mon.smithi046 (mon.0) 527 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: cephadm 2024-02-23T00:30:46.548984+0000 mgr.smithi046.lplrtl (mgr.14184) 95 : cephadm [INF] Reconfiguring daemon mgr.smithi142.hrzezs on smithi142 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: audit 2024-02-23T00:30:46.741648+0000 mon.smithi046 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.46:0/1660516392' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:30:47.715 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:47 smithi142 bash[20802]: cluster 2024-02-23T00:30:47.112901+0000 mgr.smithi046.lplrtl (mgr.14184) 96 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: audit 2024-02-23T00:30:46.537547+0000 mon.smithi046 (mon.0) 524 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: cephadm 2024-02-23T00:30:46.538498+0000 mgr.smithi046.lplrtl (mgr.14184) 94 : cephadm [INF] Reconfiguring mgr.smithi142.hrzezs (monmap changed)... 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: audit 2024-02-23T00:30:46.539008+0000 mon.smithi046 (mon.0) 525 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi142.hrzezs", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: audit 2024-02-23T00:30:46.540177+0000 mon.smithi046 (mon.0) 526 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: audit 2024-02-23T00:30:46.547892+0000 mon.smithi046 (mon.0) 527 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: cephadm 2024-02-23T00:30:46.548984+0000 mgr.smithi046.lplrtl (mgr.14184) 95 : cephadm [INF] Reconfiguring daemon mgr.smithi142.hrzezs on smithi142 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: audit 2024-02-23T00:30:46.741648+0000 mon.smithi046 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.46:0/1660516392' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:30:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:47 smithi046 bash[16275]: cluster 2024-02-23T00:30:47.112901+0000 mgr.smithi046.lplrtl (mgr.14184) 96 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: audit 2024-02-23T00:30:48.318572+0000 mon.smithi046 (mon.0) 529 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: cephadm 2024-02-23T00:30:48.320062+0000 mgr.smithi046.lplrtl (mgr.14184) 97 : cephadm [INF] Reconfiguring mon.smithi142 (monmap changed)... 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: audit 2024-02-23T00:30:48.320629+0000 mon.smithi046 (mon.0) 530 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: audit 2024-02-23T00:30:48.322133+0000 mon.smithi046 (mon.0) 531 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: audit 2024-02-23T00:30:48.323679+0000 mon.smithi046 (mon.0) 532 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:49.583 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:49 smithi142 bash[20802]: cephadm 2024-02-23T00:30:48.324966+0000 mgr.smithi046.lplrtl (mgr.14184) 98 : cephadm [INF] Reconfiguring daemon mon.smithi142 on smithi142 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: audit 2024-02-23T00:30:48.318572+0000 mon.smithi046 (mon.0) 529 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: cephadm 2024-02-23T00:30:48.320062+0000 mgr.smithi046.lplrtl (mgr.14184) 97 : cephadm [INF] Reconfiguring mon.smithi142 (monmap changed)... 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: audit 2024-02-23T00:30:48.320629+0000 mon.smithi046 (mon.0) 530 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: audit 2024-02-23T00:30:48.322133+0000 mon.smithi046 (mon.0) 531 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: audit 2024-02-23T00:30:48.323679+0000 mon.smithi046 (mon.0) 532 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:30:49.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:49 smithi046 bash[16275]: cephadm 2024-02-23T00:30:48.324966+0000 mgr.smithi046.lplrtl (mgr.14184) 98 : cephadm [INF] Reconfiguring daemon mon.smithi142 on smithi142 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: cluster 2024-02-23T00:30:49.113550+0000 mgr.smithi046.lplrtl (mgr.14184) 99 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.194240+0000 mon.smithi046 (mon.0) 533 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.203704+0000 mon.smithi046 (mon.0) 534 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.206848+0000 mon.smithi046 (mon.0) 535 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi046.front.sepia.ceph.com:9093"}]: dispatch 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.215350+0000 mon.smithi046 (mon.0) 536 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.228316+0000 mon.smithi046 (mon.0) 537 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.241884+0000 mon.smithi046 (mon.0) 538 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi046.front.sepia.ceph.com:3000"}]: dispatch 2024-02-23T00:30:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.252522+0000 mon.smithi046 (mon.0) 539 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.261232+0000 mon.smithi046 (mon.0) 540 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-23T00:30:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.265588+0000 mon.smithi046 (mon.0) 541 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-02-23T00:30:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.272830+0000 mon.smithi046 (mon.0) 542 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:50 smithi046 bash[16275]: audit 2024-02-23T00:30:50.280687+0000 mon.smithi046 (mon.0) 543 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: cluster 2024-02-23T00:30:49.113550+0000 mgr.smithi046.lplrtl (mgr.14184) 99 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.194240+0000 mon.smithi046 (mon.0) 533 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.203704+0000 mon.smithi046 (mon.0) 534 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.206848+0000 mon.smithi046 (mon.0) 535 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi046.front.sepia.ceph.com:9093"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.215350+0000 mon.smithi046 (mon.0) 536 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.228316+0000 mon.smithi046 (mon.0) 537 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.241884+0000 mon.smithi046 (mon.0) 538 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi046.front.sepia.ceph.com:3000"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.252522+0000 mon.smithi046 (mon.0) 539 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.261232+0000 mon.smithi046 (mon.0) 540 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.265588+0000 mon.smithi046 (mon.0) 541 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.272830+0000 mon.smithi046 (mon.0) 542 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:50 smithi142 bash[20802]: audit 2024-02-23T00:30:50.280687+0000 mon.smithi046 (mon.0) 543 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:30:51.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.204598+0000 mgr.smithi046.lplrtl (mgr.14184) 100 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-23T00:30:51.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.207650+0000 mgr.smithi046.lplrtl (mgr.14184) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi046.front.sepia.ceph.com:9093"}]: dispatch 2024-02-23T00:30:51.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.229254+0000 mgr.smithi046.lplrtl (mgr.14184) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-23T00:30:51.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.242542+0000 mgr.smithi046.lplrtl (mgr.14184) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi046.front.sepia.ceph.com:3000"}]: dispatch 2024-02-23T00:30:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.262382+0000 mgr.smithi046.lplrtl (mgr.14184) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-23T00:30:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:51 smithi046 bash[16275]: audit 2024-02-23T00:30:50.266559+0000 mgr.smithi046.lplrtl (mgr.14184) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-02-23T00:30:51.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.204598+0000 mgr.smithi046.lplrtl (mgr.14184) 100 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-23T00:30:51.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.207650+0000 mgr.smithi046.lplrtl (mgr.14184) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi046.front.sepia.ceph.com:9093"}]: dispatch 2024-02-23T00:30:51.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.229254+0000 mgr.smithi046.lplrtl (mgr.14184) 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-23T00:30:51.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.242542+0000 mgr.smithi046.lplrtl (mgr.14184) 103 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi046.front.sepia.ceph.com:3000"}]: dispatch 2024-02-23T00:30:51.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.262382+0000 mgr.smithi046.lplrtl (mgr.14184) 104 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-23T00:30:51.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:51 smithi142 bash[20802]: audit 2024-02-23T00:30:50.266559+0000 mgr.smithi046.lplrtl (mgr.14184) 105 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi142.front.sepia.ceph.com:9095"}]: dispatch 2024-02-23T00:30:52.187 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:30:52.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:52 smithi046 bash[16275]: cluster 2024-02-23T00:30:51.114177+0000 mgr.smithi046.lplrtl (mgr.14184) 106 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:52.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:52 smithi142 bash[20802]: cluster 2024-02-23T00:30:51.114177+0000 mgr.smithi046.lplrtl (mgr.14184) 106 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:54 smithi046 bash[16275]: cluster 2024-02-23T00:30:53.114893+0000 mgr.smithi046.lplrtl (mgr.14184) 107 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:54.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:54 smithi142 bash[20802]: cluster 2024-02-23T00:30:53.114893+0000 mgr.smithi046.lplrtl (mgr.14184) 107 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:55.200 INFO:teuthology.orchestra.run.smithi046.stdout:pg_num: 1 2024-02-23T00:30:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:55 smithi046 bash[16275]: audit 2024-02-23T00:30:55.197906+0000 mon.smithi046 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.46:0/10773194' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-23T00:30:55.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:55 smithi142 bash[20802]: audit 2024-02-23T00:30:55.197906+0000 mon.smithi046 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.46:0/10773194' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-23T00:30:55.822 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-23T00:30:55.822 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-23T00:30:55.822 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph mgr dump --format=json 2024-02-23T00:30:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:56 smithi046 bash[16275]: cluster 2024-02-23T00:30:55.115384+0000 mgr.smithi046.lplrtl (mgr.14184) 108 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:56 smithi046 bash[16275]: audit 2024-02-23T00:30:55.615916+0000 mon.smithi046 (mon.0) 545 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:56 smithi046 bash[16275]: audit 2024-02-23T00:30:56.183311+0000 mon.smithi046 (mon.0) 546 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:56.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:56 smithi142 bash[20802]: cluster 2024-02-23T00:30:55.115384+0000 mgr.smithi046.lplrtl (mgr.14184) 108 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:56.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:56 smithi142 bash[20802]: audit 2024-02-23T00:30:55.615916+0000 mon.smithi046 (mon.0) 545 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:56.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:56 smithi142 bash[20802]: audit 2024-02-23T00:30:56.183311+0000 mon.smithi046 (mon.0) 546 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:30:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:30:58 smithi046 bash[16275]: cluster 2024-02-23T00:30:57.115970+0000 mgr.smithi046.lplrtl (mgr.14184) 109 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:30:58.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:30:58 smithi142 bash[20802]: cluster 2024-02-23T00:30:57.115970+0000 mgr.smithi046.lplrtl (mgr.14184) 109 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:00.481 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:00.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:00 smithi046 bash[16275]: cluster 2024-02-23T00:30:59.116573+0000 mgr.smithi046.lplrtl (mgr.14184) 110 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:00.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:00 smithi142 bash[20802]: cluster 2024-02-23T00:30:59.116573+0000 mgr.smithi046.lplrtl (mgr.14184) 110 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:02.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:02 smithi046 bash[16275]: cluster 2024-02-23T00:31:01.117262+0000 mgr.smithi046.lplrtl (mgr.14184) 111 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:02.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:02 smithi142 bash[20802]: cluster 2024-02-23T00:31:01.117262+0000 mgr.smithi046.lplrtl (mgr.14184) 111 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:04.399 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:31:04.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:04 smithi046 bash[16275]: cluster 2024-02-23T00:31:03.117874+0000 mgr.smithi046.lplrtl (mgr.14184) 112 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:04.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:04 smithi142 bash[20802]: cluster 2024-02-23T00:31:03.117874+0000 mgr.smithi046.lplrtl (mgr.14184) 112 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:05.074 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":18,"active_gid":14184,"active_name":"smithi046.lplrtl","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6800","nonce":117859136},{"type":"v1","addr":"172.21.15.46:6801","nonce":117859136}]},"active_addr":"172.21.15.46:6801/117859136","active_change":"2024-02-23T00:28:35.073238+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14200,"name":"smithi142.hrzezs","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.46:8443/","prometheus":"http://172.21.15.46: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":5,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.46:0","nonce":434516544}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.46:0","nonce":1779218737}]}]} 2024-02-23T00:31:05.077 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-23T00:31:05.077 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-23T00:31:05.077 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-23T00:31:05.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:05 smithi046 bash[16275]: audit 2024-02-23T00:31:04.391416+0000 mon.smithi046 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.46:0/2228887177' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-23T00:31:05.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:05 smithi142 bash[20802]: audit 2024-02-23T00:31:04.391416+0000 mon.smithi046 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.46:0/2228887177' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-23T00:31:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:06 smithi046 bash[16275]: cluster 2024-02-23T00:31:05.118336+0000 mgr.smithi046.lplrtl (mgr.14184) 113 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:06 smithi046 bash[16275]: audit 2024-02-23T00:31:06.116079+0000 mon.smithi046 (mon.0) 548 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:06.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:06 smithi142 bash[20802]: cluster 2024-02-23T00:31:05.118336+0000 mgr.smithi046.lplrtl (mgr.14184) 113 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:06 smithi142 bash[20802]: audit 2024-02-23T00:31:06.116079+0000 mon.smithi046 (mon.0) 548 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: cephadm 2024-02-23T00:31:06.102968+0000 mgr.smithi046.lplrtl (mgr.14184) 114 : cephadm [INF] Detected new or changed devices on smithi142 2024-02-23T00:31:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.406126+0000 mon.smithi046 (mon.0) 549 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.407709+0000 mon.smithi046 (mon.0) 550 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.409196+0000 mon.smithi046 (mon.0) 551 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.410668+0000 mon.smithi046 (mon.0) 552 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: cephadm 2024-02-23T00:31:06.411936+0000 mgr.smithi046.lplrtl (mgr.14184) 115 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3785M 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.419783+0000 mon.smithi046 (mon.0) 553 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:06.764120+0000 mon.smithi046 (mon.0) 554 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.068563+0000 mon.smithi046 (mon.0) 555 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.071298+0000 mon.smithi046 (mon.0) 556 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.072880+0000 mon.smithi046 (mon.0) 557 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.074373+0000 mon.smithi046 (mon.0) 558 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.075869+0000 mon.smithi046 (mon.0) 559 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.084724+0000 mon.smithi046 (mon.0) 560 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.086875+0000 mon.smithi046 (mon.0) 561 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.087979+0000 mon.smithi046 (mon.0) 562 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:31:07.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.095078+0000 mon.smithi046 (mon.0) 563 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.103014+0000 mon.smithi046 (mon.0) 564 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:31:07.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.108923+0000 mon.smithi046 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:31:07.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.112556+0000 mon.smithi046 (mon.0) 566 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:31:07.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.113144+0000 mon.smithi046 (mon.0) 567 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:07.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:07 smithi046 bash[16275]: audit 2024-02-23T00:31:07.114244+0000 mon.smithi046 (mon.0) 568 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: cephadm 2024-02-23T00:31:06.102968+0000 mgr.smithi046.lplrtl (mgr.14184) 114 : cephadm [INF] Detected new or changed devices on smithi142 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.406126+0000 mon.smithi046 (mon.0) 549 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.407709+0000 mon.smithi046 (mon.0) 550 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.409196+0000 mon.smithi046 (mon.0) 551 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.410668+0000 mon.smithi046 (mon.0) 552 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: cephadm 2024-02-23T00:31:06.411936+0000 mgr.smithi046.lplrtl (mgr.14184) 115 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3785M 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.419783+0000 mon.smithi046 (mon.0) 553 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:06.764120+0000 mon.smithi046 (mon.0) 554 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.068563+0000 mon.smithi046 (mon.0) 555 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.071298+0000 mon.smithi046 (mon.0) 556 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.072880+0000 mon.smithi046 (mon.0) 557 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.074373+0000 mon.smithi046 (mon.0) 558 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.075869+0000 mon.smithi046 (mon.0) 559 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.084724+0000 mon.smithi046 (mon.0) 560 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.086875+0000 mon.smithi046 (mon.0) 561 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.087979+0000 mon.smithi046 (mon.0) 562 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.095078+0000 mon.smithi046 (mon.0) 563 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.103014+0000 mon.smithi046 (mon.0) 564 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.108923+0000 mon.smithi046 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:31:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.112556+0000 mon.smithi046 (mon.0) 566 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-23T00:31:07.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.113144+0000 mon.smithi046 (mon.0) 567 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:07.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:07 smithi142 bash[20802]: audit 2024-02-23T00:31:07.114244+0000 mon.smithi046 (mon.0) 568 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:08.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:08 smithi046 bash[16275]: cephadm 2024-02-23T00:31:06.751950+0000 mgr.smithi046.lplrtl (mgr.14184) 116 : cephadm [INF] Detected new or changed devices on smithi046 2024-02-23T00:31:08.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:08 smithi046 bash[16275]: cephadm 2024-02-23T00:31:07.077017+0000 mgr.smithi046.lplrtl (mgr.14184) 117 : cephadm [INF] Adjusting osd_memory_target on smithi046 to 3530M 2024-02-23T00:31:08.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:08 smithi046 bash[16275]: cluster 2024-02-23T00:31:07.118867+0000 mgr.smithi046.lplrtl (mgr.14184) 118 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:08.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:08 smithi142 bash[20802]: cephadm 2024-02-23T00:31:06.751950+0000 mgr.smithi046.lplrtl (mgr.14184) 116 : cephadm [INF] Detected new or changed devices on smithi046 2024-02-23T00:31:08.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:08 smithi142 bash[20802]: cephadm 2024-02-23T00:31:07.077017+0000 mgr.smithi046.lplrtl (mgr.14184) 117 : cephadm [INF] Adjusting osd_memory_target on smithi046 to 3530M 2024-02-23T00:31:08.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:08 smithi142 bash[20802]: cluster 2024-02-23T00:31:07.118867+0000 mgr.smithi046.lplrtl (mgr.14184) 118 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:10.099 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:10.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:10 smithi046 bash[16275]: cluster 2024-02-23T00:31:09.119457+0000 mgr.smithi046.lplrtl (mgr.14184) 119 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:10.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:10 smithi142 bash[20802]: cluster 2024-02-23T00:31:09.119457+0000 mgr.smithi046.lplrtl (mgr.14184) 119 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:12 smithi046 bash[16275]: cluster 2024-02-23T00:31:11.120077+0000 mgr.smithi046.lplrtl (mgr.14184) 120 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:12.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:12 smithi142 bash[20802]: cluster 2024-02-23T00:31:11.120077+0000 mgr.smithi046.lplrtl (mgr.14184) 120 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:14.186 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:31:14.187 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":40,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","created":"2024-02-23T00:26:28.474147+0000","modified":"2024-02-23T00:30:27.644272+0000","last_up_change":"2024-02-23T00:30:25.624057+0000","last_in_change":"2024-02-23T00:29:38.718920+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-23T00:30:08.862917+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":"24","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":"6c007331-aea6-4379-a214-9011c1a654b6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6801","nonce":2911575658}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6803","nonce":2911575658}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6807","nonce":2911575658}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6805","nonce":2911575658}]},"public_addr":"172.21.15.142:6801/2911575658","cluster_addr":"172.21.15.142:6803/2911575658","heartbeat_back_addr":"172.21.15.142:6807/2911575658","heartbeat_front_addr":"172.21.15.142:6805/2911575658","state":["exists","up"]},{"osd":1,"uuid":"61b0fd98-ee1b-4417-8d2e-6fa76459c990","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6802","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6803","nonce":2315192360}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6804","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6805","nonce":2315192360}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6808","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6809","nonce":2315192360}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6806","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6807","nonce":2315192360}]},"public_addr":"172.21.15.46:6803/2315192360","cluster_addr":"172.21.15.46:6805/2315192360","heartbeat_back_addr":"172.21.15.46:6809/2315192360","heartbeat_front_addr":"172.21.15.46:6807/2315192360","state":["exists","up"]},{"osd":2,"uuid":"643bdf4b-8796-4274-afa7-650022e9b7a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6809","nonce":1167585152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6811","nonce":1167585152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6815","nonce":1167585152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6813","nonce":1167585152}]},"public_addr":"172.21.15.142:6809/1167585152","cluster_addr":"172.21.15.142:6811/1167585152","heartbeat_back_addr":"172.21.15.142:6815/1167585152","heartbeat_front_addr":"172.21.15.142:6813/1167585152","state":["exists","up"]},{"osd":3,"uuid":"637f4e1d-6985-42bb-a881-d3d57f803539","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.46:6810","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6811","nonce":4283662075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6812","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6813","nonce":4283662075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6816","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6817","nonce":4283662075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6814","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6815","nonce":4283662075}]},"public_addr":"172.21.15.46:6811/4283662075","cluster_addr":"172.21.15.46:6813/4283662075","heartbeat_back_addr":"172.21.15.46:6817/4283662075","heartbeat_front_addr":"172.21.15.46:6815/4283662075","state":["exists","up"]},{"osd":4,"uuid":"b747c553-d879-4ef2-aff0-7d27609ec57a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6817","nonce":3643231416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6819","nonce":3643231416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6823","nonce":3643231416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6821","nonce":3643231416}]},"public_addr":"172.21.15.142:6817/3643231416","cluster_addr":"172.21.15.142:6819/3643231416","heartbeat_back_addr":"172.21.15.142:6823/3643231416","heartbeat_front_addr":"172.21.15.142:6821/3643231416","state":["exists","up"]},{"osd":5,"uuid":"cef5ef86-723b-424b-a4fa-289844904124","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6818","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6819","nonce":983016462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6820","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6821","nonce":983016462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6824","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6825","nonce":983016462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6822","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6823","nonce":983016462}]},"public_addr":"172.21.15.46:6819/983016462","cluster_addr":"172.21.15.46:6821/983016462","heartbeat_back_addr":"172.21.15.46:6825/983016462","heartbeat_front_addr":"172.21.15.46:6823/983016462","state":["exists","up"]},{"osd":6,"uuid":"7d0534a4-f532-4621-8b1e-1b1a4e0fc64f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6825","nonce":1550114915}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6827","nonce":1550114915}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6831","nonce":1550114915}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6829","nonce":1550114915}]},"public_addr":"172.21.15.142:6825/1550114915","cluster_addr":"172.21.15.142:6827/1550114915","heartbeat_back_addr":"172.21.15.142:6831/1550114915","heartbeat_front_addr":"172.21.15.142:6829/1550114915","state":["exists","up"]},{"osd":7,"uuid":"871813b4-d1da-4ce3-a95e-c8bbc0018f5e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6826","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6827","nonce":1512024433}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6828","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6829","nonce":1512024433}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6832","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6833","nonce":1512024433}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6830","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6831","nonce":1512024433}]},"public_addr":"172.21.15.46:6827/1512024433","cluster_addr":"172.21.15.46:6829/1512024433","heartbeat_back_addr":"172.21.15.46:6833/1512024433","heartbeat_front_addr":"172.21.15.46:6831/1512024433","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-02-23T00:30:01.657399+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-02-23T00:30:06.057271+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-02-23T00:30:06.940913+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-02-23T00:30:12.704603+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-02-23T00:30:12.210945+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-02-23T00:30:18.758465+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-02-23T00:30:16.735763+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-02-23T00:30:23.838952+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.46:0/1672600487":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3100464934":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6800/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6801/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3772633328":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6800/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/868795743":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/985004894":"2024-02-24T00:26:56.085029+0000","172.21.15.46:0/2263444069":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6800/3872502240":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6801/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6801/3872502240":"2024-02-24T00:26:56.085029+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-02-23T00:31:14.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:14 smithi046 bash[16275]: cluster 2024-02-23T00:31:13.120767+0000 mgr.smithi046.lplrtl (mgr.14184) 121 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:14.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:14 smithi046 bash[16275]: audit 2024-02-23T00:31:14.183467+0000 mon.smithi046 (mon.0) 569 : audit [DBG] from='client.? 172.21.15.46:0/636070174' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:31:14.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:14 smithi142 bash[20802]: cluster 2024-02-23T00:31:13.120767+0000 mgr.smithi046.lplrtl (mgr.14184) 121 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:14.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:14 smithi142 bash[20802]: audit 2024-02-23T00:31:14.183467+0000 mon.smithi046 (mon.0) 569 : audit [DBG] from='client.? 172.21.15.46:0/636070174' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:31:14.959 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-23T00:31:14.959 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd dump --format=json 2024-02-23T00:31:16.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:16 smithi046 bash[16275]: cluster 2024-02-23T00:31:15.121434+0000 mgr.smithi046.lplrtl (mgr.14184) 122 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:16.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:16 smithi142 bash[20802]: cluster 2024-02-23T00:31:15.121434+0000 mgr.smithi046.lplrtl (mgr.14184) 122 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:18.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:18 smithi046 bash[16275]: cluster 2024-02-23T00:31:17.122078+0000 mgr.smithi046.lplrtl (mgr.14184) 123 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:18.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:18 smithi142 bash[20802]: cluster 2024-02-23T00:31:17.122078+0000 mgr.smithi046.lplrtl (mgr.14184) 123 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:20.171 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:20.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:20 smithi046 bash[16275]: cluster 2024-02-23T00:31:19.122666+0000 mgr.smithi046.lplrtl (mgr.14184) 124 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:20.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:20 smithi142 bash[20802]: cluster 2024-02-23T00:31:19.122666+0000 mgr.smithi046.lplrtl (mgr.14184) 124 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:22.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:22 smithi046 bash[16275]: cluster 2024-02-23T00:31:21.123154+0000 mgr.smithi046.lplrtl (mgr.14184) 125 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:22.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:22 smithi142 bash[20802]: cluster 2024-02-23T00:31:21.123154+0000 mgr.smithi046.lplrtl (mgr.14184) 125 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:24.203 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:31:24.203 INFO:teuthology.orchestra.run.smithi046.stdout:{"epoch":40,"fsid":"1abddab2-d1e2-11ee-95c0-87774f69a715","created":"2024-02-23T00:26:28.474147+0000","modified":"2024-02-23T00:30:27.644272+0000","last_up_change":"2024-02-23T00:30:25.624057+0000","last_in_change":"2024-02-23T00:29:38.718920+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-23T00:30:08.862917+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":"24","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":"6c007331-aea6-4379-a214-9011c1a654b6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6800","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6801","nonce":2911575658}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6802","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6803","nonce":2911575658}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6806","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6807","nonce":2911575658}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6804","nonce":2911575658},{"type":"v1","addr":"172.21.15.142:6805","nonce":2911575658}]},"public_addr":"172.21.15.142:6801/2911575658","cluster_addr":"172.21.15.142:6803/2911575658","heartbeat_back_addr":"172.21.15.142:6807/2911575658","heartbeat_front_addr":"172.21.15.142:6805/2911575658","state":["exists","up"]},{"osd":1,"uuid":"61b0fd98-ee1b-4417-8d2e-6fa76459c990","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6802","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6803","nonce":2315192360}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6804","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6805","nonce":2315192360}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6808","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6809","nonce":2315192360}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6806","nonce":2315192360},{"type":"v1","addr":"172.21.15.46:6807","nonce":2315192360}]},"public_addr":"172.21.15.46:6803/2315192360","cluster_addr":"172.21.15.46:6805/2315192360","heartbeat_back_addr":"172.21.15.46:6809/2315192360","heartbeat_front_addr":"172.21.15.46:6807/2315192360","state":["exists","up"]},{"osd":2,"uuid":"643bdf4b-8796-4274-afa7-650022e9b7a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6808","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6809","nonce":1167585152}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6810","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6811","nonce":1167585152}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6814","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6815","nonce":1167585152}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6812","nonce":1167585152},{"type":"v1","addr":"172.21.15.142:6813","nonce":1167585152}]},"public_addr":"172.21.15.142:6809/1167585152","cluster_addr":"172.21.15.142:6811/1167585152","heartbeat_back_addr":"172.21.15.142:6815/1167585152","heartbeat_front_addr":"172.21.15.142:6813/1167585152","state":["exists","up"]},{"osd":3,"uuid":"637f4e1d-6985-42bb-a881-d3d57f803539","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.46:6810","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6811","nonce":4283662075}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6812","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6813","nonce":4283662075}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6816","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6817","nonce":4283662075}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6814","nonce":4283662075},{"type":"v1","addr":"172.21.15.46:6815","nonce":4283662075}]},"public_addr":"172.21.15.46:6811/4283662075","cluster_addr":"172.21.15.46:6813/4283662075","heartbeat_back_addr":"172.21.15.46:6817/4283662075","heartbeat_front_addr":"172.21.15.46:6815/4283662075","state":["exists","up"]},{"osd":4,"uuid":"b747c553-d879-4ef2-aff0-7d27609ec57a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6816","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6817","nonce":3643231416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6818","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6819","nonce":3643231416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6822","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6823","nonce":3643231416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6820","nonce":3643231416},{"type":"v1","addr":"172.21.15.142:6821","nonce":3643231416}]},"public_addr":"172.21.15.142:6817/3643231416","cluster_addr":"172.21.15.142:6819/3643231416","heartbeat_back_addr":"172.21.15.142:6823/3643231416","heartbeat_front_addr":"172.21.15.142:6821/3643231416","state":["exists","up"]},{"osd":5,"uuid":"cef5ef86-723b-424b-a4fa-289844904124","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6818","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6819","nonce":983016462}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6820","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6821","nonce":983016462}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6824","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6825","nonce":983016462}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6822","nonce":983016462},{"type":"v1","addr":"172.21.15.46:6823","nonce":983016462}]},"public_addr":"172.21.15.46:6819/983016462","cluster_addr":"172.21.15.46:6821/983016462","heartbeat_back_addr":"172.21.15.46:6825/983016462","heartbeat_front_addr":"172.21.15.46:6823/983016462","state":["exists","up"]},{"osd":6,"uuid":"7d0534a4-f532-4621-8b1e-1b1a4e0fc64f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6824","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6825","nonce":1550114915}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6826","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6827","nonce":1550114915}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6830","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6831","nonce":1550114915}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.142:6828","nonce":1550114915},{"type":"v1","addr":"172.21.15.142:6829","nonce":1550114915}]},"public_addr":"172.21.15.142:6825/1550114915","cluster_addr":"172.21.15.142:6827/1550114915","heartbeat_back_addr":"172.21.15.142:6831/1550114915","heartbeat_front_addr":"172.21.15.142:6829/1550114915","state":["exists","up"]},{"osd":7,"uuid":"871813b4-d1da-4ce3-a95e-c8bbc0018f5e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6826","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6827","nonce":1512024433}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6828","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6829","nonce":1512024433}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6832","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6833","nonce":1512024433}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.46:6830","nonce":1512024433},{"type":"v1","addr":"172.21.15.46:6831","nonce":1512024433}]},"public_addr":"172.21.15.46:6827/1512024433","cluster_addr":"172.21.15.46:6829/1512024433","heartbeat_back_addr":"172.21.15.46:6833/1512024433","heartbeat_front_addr":"172.21.15.46:6831/1512024433","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-02-23T00:30:01.657399+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-02-23T00:30:06.057271+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-02-23T00:30:06.940913+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-02-23T00:30:12.704603+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-02-23T00:30:12.210945+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-02-23T00:30:18.758465+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-02-23T00:30:16.735763+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-02-23T00:30:23.838952+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.46:0/1672600487":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3100464934":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6800/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:6801/2229424388":"2024-02-24T00:28:35.072992+0000","172.21.15.46:0/3772633328":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6800/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/868795743":"2024-02-24T00:27:35.112858+0000","172.21.15.46:0/985004894":"2024-02-24T00:26:56.085029+0000","172.21.15.46:0/2263444069":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6800/3872502240":"2024-02-24T00:26:56.085029+0000","172.21.15.46:6801/1266529998":"2024-02-24T00:27:35.112858+0000","172.21.15.46:6801/3872502240":"2024-02-24T00:26:56.085029+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-02-23T00:31:24.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:24 smithi046 bash[16275]: cluster 2024-02-23T00:31:23.123756+0000 mgr.smithi046.lplrtl (mgr.14184) 126 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:24.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:24 smithi046 bash[16275]: audit 2024-02-23T00:31:24.199237+0000 mon.smithi046 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.46:0/442720133' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:31:24.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:24 smithi142 bash[20802]: cluster 2024-02-23T00:31:23.123756+0000 mgr.smithi046.lplrtl (mgr.14184) 126 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:24.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:24 smithi142 bash[20802]: audit 2024-02-23T00:31:24.199237+0000 mon.smithi046 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.46:0/442720133' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-23T00:31:24.907 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-23T00:31:26.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:26 smithi046 bash[16275]: cluster 2024-02-23T00:31:25.124198+0000 mgr.smithi046.lplrtl (mgr.14184) 127 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:26.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:26 smithi142 bash[20802]: cluster 2024-02-23T00:31:25.124198+0000 mgr.smithi046.lplrtl (mgr.14184) 127 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:28.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:28 smithi046 bash[16275]: cluster 2024-02-23T00:31:27.124795+0000 mgr.smithi046.lplrtl (mgr.14184) 128 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:28.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:28 smithi142 bash[20802]: cluster 2024-02-23T00:31:27.124795+0000 mgr.smithi046.lplrtl (mgr.14184) 128 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:29.753 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:30.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:30 smithi046 bash[16275]: cluster 2024-02-23T00:31:29.125398+0000 mgr.smithi046.lplrtl (mgr.14184) 129 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:30.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:30 smithi142 bash[20802]: cluster 2024-02-23T00:31:29.125398+0000 mgr.smithi046.lplrtl (mgr.14184) 129 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:32.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:32 smithi046 bash[16275]: cluster 2024-02-23T00:31:31.125990+0000 mgr.smithi046.lplrtl (mgr.14184) 130 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:32.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:32 smithi142 bash[20802]: cluster 2024-02-23T00:31:31.125990+0000 mgr.smithi046.lplrtl (mgr.14184) 130 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:34.246 INFO:teuthology.orchestra.run.smithi046.stdout:68719476757 2024-02-23T00:31:34.246 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-23T00:31:34.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:34 smithi046 bash[16275]: cluster 2024-02-23T00:31:33.126529+0000 mgr.smithi046.lplrtl (mgr.14184) 131 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:34.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:34 smithi046 bash[16275]: audit 2024-02-23T00:31:33.179349+0000 mon.smithi046 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:34.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:34 smithi142 bash[20802]: cluster 2024-02-23T00:31:33.126529+0000 mgr.smithi046.lplrtl (mgr.14184) 131 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:34.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:34 smithi142 bash[20802]: audit 2024-02-23T00:31:33.179349+0000 mon.smithi046 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:35.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:35 smithi046 bash[16275]: audit 2024-02-23T00:31:34.634399+0000 mon.smithi046 (mon.0) 572 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:35.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:35 smithi046 bash[16275]: audit 2024-02-23T00:31:34.638679+0000 mon.smithi046 (mon.0) 573 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:31:35.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:35 smithi046 bash[16275]: cluster 2024-02-23T00:31:35.127191+0000 mgr.smithi046.lplrtl (mgr.14184) 132 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:36.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:35 smithi142 bash[20802]: audit 2024-02-23T00:31:34.634399+0000 mon.smithi046 (mon.0) 572 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:36.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:35 smithi142 bash[20802]: audit 2024-02-23T00:31:34.638679+0000 mon.smithi046 (mon.0) 573 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:31:36.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:35 smithi142 bash[20802]: cluster 2024-02-23T00:31:35.127191+0000 mgr.smithi046.lplrtl (mgr.14184) 132 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:38.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:38 smithi046 bash[16275]: cluster 2024-02-23T00:31:37.127828+0000 mgr.smithi046.lplrtl (mgr.14184) 133 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:38.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:38 smithi142 bash[20802]: cluster 2024-02-23T00:31:37.127828+0000 mgr.smithi046.lplrtl (mgr.14184) 133 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:39.101 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:40.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:40 smithi046 bash[16275]: cluster 2024-02-23T00:31:39.128362+0000 mgr.smithi046.lplrtl (mgr.14184) 134 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:40.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:40 smithi142 bash[20802]: cluster 2024-02-23T00:31:39.128362+0000 mgr.smithi046.lplrtl (mgr.14184) 134 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:41.705 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.382306+0000 mon.smithi046 (mon.0) 574 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.706 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.467068+0000 mon.smithi046 (mon.0) 575 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.706 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.469036+0000 mon.smithi046 (mon.0) 576 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:41.706 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.470641+0000 mon.smithi046 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:31:41.706 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.479456+0000 mon.smithi046 (mon.0) 578 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.706 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:41 smithi046 bash[16275]: audit 2024-02-23T00:31:40.488278+0000 mon.smithi046 (mon.0) 579 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.382306+0000 mon.smithi046 (mon.0) 574 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.467068+0000 mon.smithi046 (mon.0) 575 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.469036+0000 mon.smithi046 (mon.0) 576 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.470641+0000 mon.smithi046 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.479456+0000 mon.smithi046 (mon.0) 578 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:31:41.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:41 smithi142 bash[20802]: audit 2024-02-23T00:31:40.488278+0000 mon.smithi046 (mon.0) 579 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:31:42.602 INFO:teuthology.orchestra.run.smithi046.stdout:85899345941 2024-02-23T00:31:42.602 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-23T00:31:42.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:42 smithi046 bash[16275]: cluster 2024-02-23T00:31:41.128952+0000 mgr.smithi046.lplrtl (mgr.14184) 135 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:42.756 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:42 smithi142 bash[20802]: cluster 2024-02-23T00:31:41.128952+0000 mgr.smithi046.lplrtl (mgr.14184) 135 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:44.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:44 smithi142 bash[20802]: cluster 2024-02-23T00:31:43.129560+0000 mgr.smithi046.lplrtl (mgr.14184) 136 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:44.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:44 smithi046 bash[16275]: cluster 2024-02-23T00:31:43.129560+0000 mgr.smithi046.lplrtl (mgr.14184) 136 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:46.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:46 smithi142 bash[20802]: cluster 2024-02-23T00:31:45.130170+0000 mgr.smithi046.lplrtl (mgr.14184) 137 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:46.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:46 smithi046 bash[16275]: cluster 2024-02-23T00:31:45.130170+0000 mgr.smithi046.lplrtl (mgr.14184) 137 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:47.450 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:47.984 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:47 smithi046 bash[16275]: cluster 2024-02-23T00:31:47.130785+0000 mgr.smithi046.lplrtl (mgr.14184) 138 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:48.006 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:47 smithi142 bash[20802]: cluster 2024-02-23T00:31:47.130785+0000 mgr.smithi046.lplrtl (mgr.14184) 138 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:50 smithi046 bash[16275]: cluster 2024-02-23T00:31:49.131392+0000 mgr.smithi046.lplrtl (mgr.14184) 139 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:50.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:50 smithi142 bash[20802]: cluster 2024-02-23T00:31:49.131392+0000 mgr.smithi046.lplrtl (mgr.14184) 139 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:50.688 INFO:teuthology.orchestra.run.smithi046.stdout:90194313240 2024-02-23T00:31:50.689 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-23T00:31:52.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:52 smithi046 bash[16275]: cluster 2024-02-23T00:31:51.131990+0000 mgr.smithi046.lplrtl (mgr.14184) 140 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:52.506 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:52 smithi142 bash[20802]: cluster 2024-02-23T00:31:51.131990+0000 mgr.smithi046.lplrtl (mgr.14184) 140 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:54.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:54 smithi046 bash[16275]: cluster 2024-02-23T00:31:53.132557+0000 mgr.smithi046.lplrtl (mgr.14184) 141 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:54.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:54 smithi142 bash[20802]: cluster 2024-02-23T00:31:53.132557+0000 mgr.smithi046.lplrtl (mgr.14184) 141 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:55.536 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:31:56.477 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:56 smithi046 bash[16275]: cluster 2024-02-23T00:31:55.133119+0000 mgr.smithi046.lplrtl (mgr.14184) 142 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:56.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:56 smithi142 bash[20802]: cluster 2024-02-23T00:31:55.133119+0000 mgr.smithi046.lplrtl (mgr.14184) 142 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:58.443 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:31:58 smithi046 bash[16275]: cluster 2024-02-23T00:31:57.133739+0000 mgr.smithi046.lplrtl (mgr.14184) 143 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:58.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:31:58 smithi142 bash[20802]: cluster 2024-02-23T00:31:57.133739+0000 mgr.smithi046.lplrtl (mgr.14184) 143 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:31:58.958 INFO:teuthology.orchestra.run.smithi046.stdout:115964117015 2024-02-23T00:31:58.959 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-23T00:32:00.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:00 smithi046 bash[16275]: cluster 2024-02-23T00:31:59.134320+0000 mgr.smithi046.lplrtl (mgr.14184) 144 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:00.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:00 smithi142 bash[20802]: cluster 2024-02-23T00:31:59.134320+0000 mgr.smithi046.lplrtl (mgr.14184) 144 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:02.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:02 smithi046 bash[16275]: cluster 2024-02-23T00:32:01.134940+0000 mgr.smithi046.lplrtl (mgr.14184) 145 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:02.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:02 smithi142 bash[20802]: cluster 2024-02-23T00:32:01.134940+0000 mgr.smithi046.lplrtl (mgr.14184) 145 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:03.808 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:04.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:04 smithi046 bash[16275]: cluster 2024-02-23T00:32:03.135545+0000 mgr.smithi046.lplrtl (mgr.14184) 146 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:04.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:04 smithi142 bash[20802]: cluster 2024-02-23T00:32:03.135545+0000 mgr.smithi046.lplrtl (mgr.14184) 146 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:06.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:06 smithi046 bash[16275]: cluster 2024-02-23T00:32:05.135986+0000 mgr.smithi046.lplrtl (mgr.14184) 147 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:06.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:06 smithi142 bash[20802]: cluster 2024-02-23T00:32:05.135986+0000 mgr.smithi046.lplrtl (mgr.14184) 147 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:07.045 INFO:teuthology.orchestra.run.smithi046.stdout:111669149721 2024-02-23T00:32:07.046 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-23T00:32:08.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:08 smithi046 bash[16275]: cluster 2024-02-23T00:32:07.136531+0000 mgr.smithi046.lplrtl (mgr.14184) 148 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:08.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:08 smithi142 bash[20802]: cluster 2024-02-23T00:32:07.136531+0000 mgr.smithi046.lplrtl (mgr.14184) 148 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:10.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:10 smithi142 bash[20802]: cluster 2024-02-23T00:32:09.137100+0000 mgr.smithi046.lplrtl (mgr.14184) 149 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:10.554 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:10 smithi046 bash[16275]: cluster 2024-02-23T00:32:09.137100+0000 mgr.smithi046.lplrtl (mgr.14184) 149 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:11.898 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:12.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:12 smithi142 bash[20802]: cluster 2024-02-23T00:32:11.137777+0000 mgr.smithi046.lplrtl (mgr.14184) 150 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:12 smithi046 bash[16275]: cluster 2024-02-23T00:32:11.137777+0000 mgr.smithi046.lplrtl (mgr.14184) 150 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:14.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:14 smithi046 bash[16275]: cluster 2024-02-23T00:32:13.138332+0000 mgr.smithi046.lplrtl (mgr.14184) 151 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:14.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:14 smithi142 bash[20802]: cluster 2024-02-23T00:32:13.138332+0000 mgr.smithi046.lplrtl (mgr.14184) 151 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:15.095 INFO:teuthology.orchestra.run.smithi046.stdout:146028888089 2024-02-23T00:32:15.095 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-23T00:32:16.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:16 smithi142 bash[20802]: cluster 2024-02-23T00:32:15.138944+0000 mgr.smithi046.lplrtl (mgr.14184) 152 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:16.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:16 smithi046 bash[16275]: cluster 2024-02-23T00:32:15.138944+0000 mgr.smithi046.lplrtl (mgr.14184) 152 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:18.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:18 smithi046 bash[16275]: cluster 2024-02-23T00:32:17.139585+0000 mgr.smithi046.lplrtl (mgr.14184) 153 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:18.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:18 smithi142 bash[20802]: cluster 2024-02-23T00:32:17.139585+0000 mgr.smithi046.lplrtl (mgr.14184) 153 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:19.943 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:20.555 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:20 smithi046 bash[16275]: cluster 2024-02-23T00:32:19.140184+0000 mgr.smithi046.lplrtl (mgr.14184) 154 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:20.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:20 smithi142 bash[20802]: cluster 2024-02-23T00:32:19.140184+0000 mgr.smithi046.lplrtl (mgr.14184) 154 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:22.520 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:22 smithi046 bash[16275]: cluster 2024-02-23T00:32:21.140703+0000 mgr.smithi046.lplrtl (mgr.14184) 155 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:22.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:22 smithi142 bash[20802]: cluster 2024-02-23T00:32:21.140703+0000 mgr.smithi046.lplrtl (mgr.14184) 155 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:23.298 INFO:teuthology.orchestra.run.smithi046.stdout:137438953499 2024-02-23T00:32:23.299 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-23T00:32:24.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:24 smithi046 bash[16275]: cluster 2024-02-23T00:32:23.141344+0000 mgr.smithi046.lplrtl (mgr.14184) 156 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:24.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:24 smithi142 bash[20802]: cluster 2024-02-23T00:32:23.141344+0000 mgr.smithi046.lplrtl (mgr.14184) 156 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:26.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:26 smithi046 bash[16275]: cluster 2024-02-23T00:32:25.141878+0000 mgr.smithi046.lplrtl (mgr.14184) 157 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:26.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:26 smithi142 bash[20802]: cluster 2024-02-23T00:32:25.141878+0000 mgr.smithi046.lplrtl (mgr.14184) 157 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:28.138 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:28.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:28 smithi046 bash[16275]: cluster 2024-02-23T00:32:27.142491+0000 mgr.smithi046.lplrtl (mgr.14184) 158 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:28.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:28 smithi142 bash[20802]: cluster 2024-02-23T00:32:27.142491+0000 mgr.smithi046.lplrtl (mgr.14184) 158 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:30.554 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:30 smithi046 bash[16275]: cluster 2024-02-23T00:32:29.143132+0000 mgr.smithi046.lplrtl (mgr.14184) 159 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:30.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:30 smithi142 bash[20802]: cluster 2024-02-23T00:32:29.143132+0000 mgr.smithi046.lplrtl (mgr.14184) 159 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:31.426 INFO:teuthology.orchestra.run.smithi046.stdout:163208757276 2024-02-23T00:32:31.426 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-23T00:32:32.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:32 smithi046 bash[16275]: cluster 2024-02-23T00:32:31.143704+0000 mgr.smithi046.lplrtl (mgr.14184) 160 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:32.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:32 smithi142 bash[20802]: cluster 2024-02-23T00:32:31.143704+0000 mgr.smithi046.lplrtl (mgr.14184) 160 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:34 smithi046 bash[16275]: cluster 2024-02-23T00:32:33.144347+0000 mgr.smithi046.lplrtl (mgr.14184) 161 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:34.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:34 smithi142 bash[20802]: cluster 2024-02-23T00:32:33.144347+0000 mgr.smithi046.lplrtl (mgr.14184) 161 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:36.279 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:36 smithi046 bash[16275]: cluster 2024-02-23T00:32:35.144910+0000 mgr.smithi046.lplrtl (mgr.14184) 162 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:36.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:36 smithi142 bash[20802]: cluster 2024-02-23T00:32:35.144910+0000 mgr.smithi046.lplrtl (mgr.14184) 162 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:38.640 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:38 smithi046 bash[16275]: cluster 2024-02-23T00:32:37.145551+0000 mgr.smithi046.lplrtl (mgr.14184) 163 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:38.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:38 smithi142 bash[20802]: cluster 2024-02-23T00:32:37.145551+0000 mgr.smithi046.lplrtl (mgr.14184) 163 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:38.983 INFO:teuthology.orchestra.run.smithi046.stdout:68719476770 2024-02-23T00:32:39.552 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476757 got 68719476770 for osd.0 2024-02-23T00:32:39.552 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-23T00:32:39.565 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:39 smithi046 bash[16275]: audit 2024-02-23T00:32:38.981006+0000 mon.smithi046 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.46:0/4243104464' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-23T00:32:39.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:39 smithi142 bash[20802]: audit 2024-02-23T00:32:38.981006+0000 mon.smithi046 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.46:0/4243104464' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-23T00:32:40.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:40 smithi046 bash[16275]: cluster 2024-02-23T00:32:39.145991+0000 mgr.smithi046.lplrtl (mgr.14184) 164 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:40.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:40 smithi142 bash[20802]: cluster 2024-02-23T00:32:39.145991+0000 mgr.smithi046.lplrtl (mgr.14184) 164 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:41.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:41 smithi046 bash[16275]: audit 2024-02-23T00:32:40.499451+0000 mon.smithi046 (mon.0) 581 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:32:41.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:41 smithi142 bash[20802]: audit 2024-02-23T00:32:40.499451+0000 mon.smithi046 (mon.0) 581 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:32:42.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:42 smithi046 bash[16275]: cluster 2024-02-23T00:32:41.146545+0000 mgr.smithi046.lplrtl (mgr.14184) 165 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:42.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:42 smithi142 bash[20802]: cluster 2024-02-23T00:32:41.146545+0000 mgr.smithi046.lplrtl (mgr.14184) 165 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:44.399 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:44.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:44 smithi046 bash[16275]: cluster 2024-02-23T00:32:43.147192+0000 mgr.smithi046.lplrtl (mgr.14184) 166 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:44.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:44 smithi142 bash[20802]: cluster 2024-02-23T00:32:43.147192+0000 mgr.smithi046.lplrtl (mgr.14184) 166 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:46.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:46 smithi046 bash[16275]: cluster 2024-02-23T00:32:45.147686+0000 mgr.smithi046.lplrtl (mgr.14184) 167 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:46.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:46 smithi046 bash[16275]: audit 2024-02-23T00:32:45.796369+0000 mon.smithi046 (mon.0) 582 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:46.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:46 smithi142 bash[20802]: cluster 2024-02-23T00:32:45.147686+0000 mgr.smithi046.lplrtl (mgr.14184) 167 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:46.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:46 smithi142 bash[20802]: audit 2024-02-23T00:32:45.796369+0000 mon.smithi046 (mon.0) 582 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:47 smithi046 bash[16275]: audit 2024-02-23T00:32:46.344887+0000 mon.smithi046 (mon.0) 583 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:47 smithi046 bash[16275]: audit 2024-02-23T00:32:46.641171+0000 mon.smithi046 (mon.0) 584 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:32:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:47 smithi046 bash[16275]: audit 2024-02-23T00:32:46.643212+0000 mon.smithi046 (mon.0) 585 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:32:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:47 smithi046 bash[16275]: audit 2024-02-23T00:32:46.653625+0000 mon.smithi046 (mon.0) 586 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:47.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:47 smithi046 bash[16275]: audit 2024-02-23T00:32:46.663394+0000 mon.smithi046 (mon.0) 587 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:32:47.602 INFO:teuthology.orchestra.run.smithi046.stdout:85899345954 2024-02-23T00:32:47.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:47 smithi142 bash[20802]: audit 2024-02-23T00:32:46.344887+0000 mon.smithi046 (mon.0) 583 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:47.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:47 smithi142 bash[20802]: audit 2024-02-23T00:32:46.641171+0000 mon.smithi046 (mon.0) 584 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:32:47.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:47 smithi142 bash[20802]: audit 2024-02-23T00:32:46.643212+0000 mon.smithi046 (mon.0) 585 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:32:47.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:47 smithi142 bash[20802]: audit 2024-02-23T00:32:46.653625+0000 mon.smithi046 (mon.0) 586 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:32:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:47 smithi142 bash[20802]: audit 2024-02-23T00:32:46.663394+0000 mon.smithi046 (mon.0) 587 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:32:48.310 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345941 got 85899345954 for osd.1 2024-02-23T00:32:48.311 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-23T00:32:48.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:48 smithi046 bash[16275]: cluster 2024-02-23T00:32:47.148075+0000 mgr.smithi046.lplrtl (mgr.14184) 168 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:48.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:48 smithi046 bash[16275]: audit 2024-02-23T00:32:47.599826+0000 mon.smithi046 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.46:0/630699094' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-23T00:32:48.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:48 smithi142 bash[20802]: cluster 2024-02-23T00:32:47.148075+0000 mgr.smithi046.lplrtl (mgr.14184) 168 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:48.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:48 smithi142 bash[20802]: audit 2024-02-23T00:32:47.599826+0000 mon.smithi046 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.46:0/630699094' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-23T00:32:50.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:50 smithi046 bash[16275]: cluster 2024-02-23T00:32:49.148584+0000 mgr.smithi046.lplrtl (mgr.14184) 169 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:50.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:50 smithi142 bash[20802]: cluster 2024-02-23T00:32:49.148584+0000 mgr.smithi046.lplrtl (mgr.14184) 169 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:52.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:52 smithi046 bash[16275]: cluster 2024-02-23T00:32:51.149168+0000 mgr.smithi046.lplrtl (mgr.14184) 170 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:52.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:52 smithi142 bash[20802]: cluster 2024-02-23T00:32:51.149168+0000 mgr.smithi046.lplrtl (mgr.14184) 170 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:53.199 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:32:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:54 smithi046 bash[16275]: cluster 2024-02-23T00:32:53.149809+0000 mgr.smithi046.lplrtl (mgr.14184) 171 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:54.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:54 smithi142 bash[20802]: cluster 2024-02-23T00:32:53.149809+0000 mgr.smithi046.lplrtl (mgr.14184) 171 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:56.109 INFO:teuthology.orchestra.run.smithi046.stdout:90194313253 2024-02-23T00:32:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:56 smithi046 bash[16275]: cluster 2024-02-23T00:32:55.150387+0000 mgr.smithi046.lplrtl (mgr.14184) 172 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:56.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:56 smithi046 bash[16275]: audit 2024-02-23T00:32:56.107493+0000 mon.smithi046 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.46:0/3505523052' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-23T00:32:56.732 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313240 got 90194313253 for osd.2 2024-02-23T00:32:56.732 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-23T00:32:56.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:56 smithi142 bash[20802]: cluster 2024-02-23T00:32:55.150387+0000 mgr.smithi046.lplrtl (mgr.14184) 172 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:56.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:56 smithi142 bash[20802]: audit 2024-02-23T00:32:56.107493+0000 mon.smithi046 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.46:0/3505523052' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-23T00:32:58.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:32:58 smithi046 bash[16275]: cluster 2024-02-23T00:32:57.151051+0000 mgr.smithi046.lplrtl (mgr.14184) 173 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:32:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:32:58 smithi142 bash[20802]: cluster 2024-02-23T00:32:57.151051+0000 mgr.smithi046.lplrtl (mgr.14184) 173 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:00.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:00 smithi046 bash[16275]: cluster 2024-02-23T00:32:59.151675+0000 mgr.smithi046.lplrtl (mgr.14184) 174 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:00.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:00 smithi142 bash[20802]: cluster 2024-02-23T00:32:59.151675+0000 mgr.smithi046.lplrtl (mgr.14184) 174 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:01.570 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:02.696 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:02 smithi046 bash[16275]: cluster 2024-02-23T00:33:01.152339+0000 mgr.smithi046.lplrtl (mgr.14184) 175 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:02.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:02 smithi142 bash[20802]: cluster 2024-02-23T00:33:01.152339+0000 mgr.smithi046.lplrtl (mgr.14184) 175 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:04.420 INFO:teuthology.orchestra.run.smithi046.stdout:115964117028 2024-02-23T00:33:04.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:04 smithi046 bash[16275]: cluster 2024-02-23T00:33:03.153012+0000 mgr.smithi046.lplrtl (mgr.14184) 176 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:04.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:04 smithi142 bash[20802]: cluster 2024-02-23T00:33:03.153012+0000 mgr.smithi046.lplrtl (mgr.14184) 176 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:05.030 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964117015 got 115964117028 for osd.3 2024-02-23T00:33:05.030 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-23T00:33:05.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:05 smithi046 bash[16275]: audit 2024-02-23T00:33:04.418703+0000 mon.smithi046 (mon.0) 590 : audit [DBG] from='client.? 172.21.15.46:0/155374075' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-23T00:33:05.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:05 smithi142 bash[20802]: audit 2024-02-23T00:33:04.418703+0000 mon.smithi046 (mon.0) 590 : audit [DBG] from='client.? 172.21.15.46:0/155374075' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-23T00:33:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:06 smithi046 bash[16275]: cluster 2024-02-23T00:33:05.153587+0000 mgr.smithi046.lplrtl (mgr.14184) 177 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:06.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:06 smithi142 bash[20802]: cluster 2024-02-23T00:33:05.153587+0000 mgr.smithi046.lplrtl (mgr.14184) 177 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:08.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:08 smithi046 bash[16275]: cluster 2024-02-23T00:33:07.154190+0000 mgr.smithi046.lplrtl (mgr.14184) 178 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:08.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:08 smithi142 bash[20802]: cluster 2024-02-23T00:33:07.154190+0000 mgr.smithi046.lplrtl (mgr.14184) 178 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:09.872 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:10.729 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:10 smithi046 bash[16275]: cluster 2024-02-23T00:33:09.154772+0000 mgr.smithi046.lplrtl (mgr.14184) 179 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:10 smithi142 bash[20802]: cluster 2024-02-23T00:33:09.154772+0000 mgr.smithi046.lplrtl (mgr.14184) 179 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:12.684 INFO:teuthology.orchestra.run.smithi046.stdout:111669149734 2024-02-23T00:33:12.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:12 smithi046 bash[16275]: cluster 2024-02-23T00:33:11.155352+0000 mgr.smithi046.lplrtl (mgr.14184) 180 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:12.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:12 smithi142 bash[20802]: cluster 2024-02-23T00:33:11.155352+0000 mgr.smithi046.lplrtl (mgr.14184) 180 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:13.241 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149721 got 111669149734 for osd.4 2024-02-23T00:33:13.241 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-23T00:33:13.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:13 smithi046 bash[16275]: audit 2024-02-23T00:33:12.682695+0000 mon.smithi046 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.46:0/2774385826' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-23T00:33:13.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:13 smithi142 bash[20802]: audit 2024-02-23T00:33:12.682695+0000 mon.smithi046 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.46:0/2774385826' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-23T00:33:14.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:14 smithi046 bash[16275]: cluster 2024-02-23T00:33:13.155965+0000 mgr.smithi046.lplrtl (mgr.14184) 181 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:14 smithi142 bash[20802]: cluster 2024-02-23T00:33:13.155965+0000 mgr.smithi046.lplrtl (mgr.14184) 181 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:16.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:16 smithi046 bash[16275]: cluster 2024-02-23T00:33:15.156542+0000 mgr.smithi046.lplrtl (mgr.14184) 182 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:16.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:16 smithi142 bash[20802]: cluster 2024-02-23T00:33:15.156542+0000 mgr.smithi046.lplrtl (mgr.14184) 182 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:18.082 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:18.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:18 smithi046 bash[16275]: cluster 2024-02-23T00:33:17.157143+0000 mgr.smithi046.lplrtl (mgr.14184) 183 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:18.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:18 smithi142 bash[20802]: cluster 2024-02-23T00:33:17.157143+0000 mgr.smithi046.lplrtl (mgr.14184) 183 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:20.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:20 smithi046 bash[16275]: cluster 2024-02-23T00:33:19.157743+0000 mgr.smithi046.lplrtl (mgr.14184) 184 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:20.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:20 smithi142 bash[20802]: cluster 2024-02-23T00:33:19.157743+0000 mgr.smithi046.lplrtl (mgr.14184) 184 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:20.852 INFO:teuthology.orchestra.run.smithi046.stdout:146028888102 2024-02-23T00:33:21.450 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888089 got 146028888102 for osd.5 2024-02-23T00:33:21.450 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-23T00:33:21.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:21 smithi046 bash[16275]: audit 2024-02-23T00:33:20.849841+0000 mon.smithi046 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.46:0/3736838506' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-23T00:33:21.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:21 smithi142 bash[20802]: audit 2024-02-23T00:33:20.849841+0000 mon.smithi046 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.46:0/3736838506' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-23T00:33:22.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:22 smithi046 bash[16275]: cluster 2024-02-23T00:33:21.158345+0000 mgr.smithi046.lplrtl (mgr.14184) 185 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:22.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:22 smithi142 bash[20802]: cluster 2024-02-23T00:33:21.158345+0000 mgr.smithi046.lplrtl (mgr.14184) 185 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:24.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:24 smithi046 bash[16275]: cluster 2024-02-23T00:33:23.158982+0000 mgr.smithi046.lplrtl (mgr.14184) 186 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:24.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:24 smithi142 bash[20802]: cluster 2024-02-23T00:33:23.158982+0000 mgr.smithi046.lplrtl (mgr.14184) 186 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:26.295 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:26.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:26 smithi046 bash[16275]: cluster 2024-02-23T00:33:25.159562+0000 mgr.smithi046.lplrtl (mgr.14184) 187 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:26.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:26 smithi142 bash[20802]: cluster 2024-02-23T00:33:25.159562+0000 mgr.smithi046.lplrtl (mgr.14184) 187 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:28.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:28 smithi046 bash[16275]: cluster 2024-02-23T00:33:27.160124+0000 mgr.smithi046.lplrtl (mgr.14184) 188 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:28.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:28 smithi142 bash[20802]: cluster 2024-02-23T00:33:27.160124+0000 mgr.smithi046.lplrtl (mgr.14184) 188 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:29.206 INFO:teuthology.orchestra.run.smithi046.stdout:137438953512 2024-02-23T00:33:29.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:29 smithi046 bash[16275]: audit 2024-02-23T00:33:29.204434+0000 mon.smithi046 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.46:0/796922165' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-23T00:33:29.752 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953499 got 137438953512 for osd.6 2024-02-23T00:33:29.753 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-23T00:33:29.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:29 smithi142 bash[20802]: audit 2024-02-23T00:33:29.204434+0000 mon.smithi046 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.46:0/796922165' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-23T00:33:30.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:30 smithi142 bash[20802]: cluster 2024-02-23T00:33:29.160688+0000 mgr.smithi046.lplrtl (mgr.14184) 189 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:30.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:30 smithi046 bash[16275]: cluster 2024-02-23T00:33:29.160688+0000 mgr.smithi046.lplrtl (mgr.14184) 189 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:32.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:32 smithi142 bash[20802]: cluster 2024-02-23T00:33:31.161372+0000 mgr.smithi046.lplrtl (mgr.14184) 190 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:32.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:32 smithi046 bash[16275]: cluster 2024-02-23T00:33:31.161372+0000 mgr.smithi046.lplrtl (mgr.14184) 190 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:34.604 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:34.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:34 smithi142 bash[20802]: cluster 2024-02-23T00:33:33.162067+0000 mgr.smithi046.lplrtl (mgr.14184) 191 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:34.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:34 smithi046 bash[16275]: cluster 2024-02-23T00:33:33.162067+0000 mgr.smithi046.lplrtl (mgr.14184) 191 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:36.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:36 smithi142 bash[20802]: cluster 2024-02-23T00:33:35.162632+0000 mgr.smithi046.lplrtl (mgr.14184) 192 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:36.848 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:36 smithi046 bash[16275]: cluster 2024-02-23T00:33:35.162632+0000 mgr.smithi046.lplrtl (mgr.14184) 192 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:37.265 INFO:teuthology.orchestra.run.smithi046.stdout:163208757289 2024-02-23T00:33:37.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:37 smithi046 bash[16275]: audit 2024-02-23T00:33:37.263026+0000 mon.smithi046 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.46:0/1372180688' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-23T00:33:37.806 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757276 got 163208757289 for osd.7 2024-02-23T00:33:37.806 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-23T00:33:37.806 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph pg dump --format=json 2024-02-23T00:33:38.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:37 smithi142 bash[20802]: audit 2024-02-23T00:33:37.263026+0000 mon.smithi046 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.46:0/1372180688' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-23T00:33:38.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:38 smithi046 bash[16275]: cluster 2024-02-23T00:33:37.163080+0000 mgr.smithi046.lplrtl (mgr.14184) 193 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:39.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:38 smithi142 bash[20802]: cluster 2024-02-23T00:33:37.163080+0000 mgr.smithi046.lplrtl (mgr.14184) 193 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:39.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:39 smithi046 bash[16275]: cluster 2024-02-23T00:33:39.163738+0000 mgr.smithi046.lplrtl (mgr.14184) 194 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:40.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:39 smithi142 bash[20802]: cluster 2024-02-23T00:33:39.163738+0000 mgr.smithi046.lplrtl (mgr.14184) 194 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:42.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:42 smithi046 bash[16275]: cluster 2024-02-23T00:33:41.164393+0000 mgr.smithi046.lplrtl (mgr.14184) 195 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:42.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:42 smithi142 bash[20802]: cluster 2024-02-23T00:33:41.164393+0000 mgr.smithi046.lplrtl (mgr.14184) 195 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:42.658 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:44.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:44 smithi046 bash[16275]: cluster 2024-02-23T00:33:43.165089+0000 mgr.smithi046.lplrtl (mgr.14184) 196 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:44.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:44 smithi142 bash[20802]: cluster 2024-02-23T00:33:43.165089+0000 mgr.smithi046.lplrtl (mgr.14184) 196 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:45.845 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:33:45.848 INFO:teuthology.orchestra.run.smithi046.stderr:dumped all 2024-02-23T00:33:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:46 smithi046 bash[16275]: cluster 2024-02-23T00:33:45.165710+0000 mgr.smithi046.lplrtl (mgr.14184) 197 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:46.493 INFO:teuthology.orchestra.run.smithi046.stdout:{"pg_ready":true,"pg_map":{"version":183,"stamp":"2024-02-23T00:33:45.165422+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":2379872,"kb_used_data":3104,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548576,"statfs":{"total":767926730752,"available":765489741824,"internally_reserved":0,"allocated":3178496,"data_stored":1248952,"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":40,"state":"active+clean","last_fresh":"2024-02-23T00:30:28.538596+0000","last_change":"2024-02-23T00:30:28.538596+0000","last_active":"2024-02-23T00:30:28.538596+0000","last_peered":"2024-02-23T00:30:28.538596+0000","last_clean":"2024-02-23T00:30:28.538596+0000","last_became_active":"2024-02-23T00:30:28.538142+0000","last_became_peered":"2024-02-23T00:30:28.538142+0000","last_unstale":"2024-02-23T00:30:28.538596+0000","last_undegraded":"2024-02-23T00:30:28.538596+0000","last_fullsized":"2024-02-23T00:30:28.538596+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-23T00:30:09.396562+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-23T00:30:09.396562+0000","last_clean_scrub_stamp":"2024-02-23T00:30:09.396562+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757291,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.92300000000000004,"5min":0.88900000000000001,"15min":0.88400000000000001},"min":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.1639999999999999,"5min":1.302,"15min":1.302},"last":0.92200000000000004},{"interface":"front","average":{"1min":0.91000000000000003,"5min":0.98199999999999998,"15min":1.0209999999999999},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.383,"5min":1.5569999999999999,"15min":1.5569999999999999},"last":0.74299999999999999}]},{"osd":1,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.879,"5min":0.86899999999999999,"15min":0.86199999999999999},"min":{"1min":0.496,"5min":0.496,"15min":0.496},"max":{"1min":1.373,"5min":1.8420000000000001,"15min":1.8420000000000001},"last":0.69199999999999995},{"interface":"front","average":{"1min":0.96599999999999997,"5min":0.93700000000000006,"15min":0.93799999999999994},"min":{"1min":0.65100000000000002,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":1.516,"5min":1.516,"15min":1.516},"last":0.85199999999999998}]},{"osd":2,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":0.90500000000000003,"15min":0.90900000000000003},"min":{"1min":0.67100000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.153,"5min":1.2350000000000001,"15min":1.2350000000000001},"last":0.78800000000000003},{"interface":"front","average":{"1min":1.0720000000000001,"5min":1.0149999999999999,"15min":1.0069999999999999},"min":{"1min":0.76900000000000002,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.425,"5min":1.425,"15min":1.425},"last":0.81399999999999995}]},{"osd":3,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.0309999999999999,"5min":0.98499999999999999,"15min":1.002},"min":{"1min":0.65400000000000003,"5min":0.59299999999999997,"15min":0.59299999999999997},"max":{"1min":1.3600000000000001,"5min":1.47,"15min":1.47},"last":1.0049999999999999},{"interface":"front","average":{"1min":0.95199999999999996,"5min":0.98399999999999999,"15min":1.01},"min":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.3400000000000001,"5min":2.157,"15min":2.157},"last":0.88500000000000001}]},{"osd":4,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.0129999999999999,"5min":1.048,"15min":1.0580000000000001},"min":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"max":{"1min":1.3200000000000001,"5min":1.3700000000000001,"15min":1.3700000000000001},"last":1.038},{"interface":"front","average":{"1min":1.2370000000000001,"5min":1.1890000000000001,"15min":1.1759999999999999},"min":{"1min":0.872,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.6799999999999999,"5min":3.4449999999999998,"15min":3.4449999999999998},"last":1.0900000000000001}]},{"osd":5,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.25,"5min":1.1619999999999999,"15min":1.153},"min":{"1min":0.61099999999999999,"5min":0.504,"15min":0.504},"max":{"1min":1.7070000000000001,"5min":1.8100000000000001,"15min":1.8100000000000001},"last":1.2},{"interface":"front","average":{"1min":1.268,"5min":1.292,"15min":1.3460000000000001},"min":{"1min":0.88500000000000001,"5min":0.747,"15min":0.747},"max":{"1min":1.6739999999999999,"5min":2.637,"15min":2.637},"last":1.123}]},{"osd":6,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.304,"5min":1.3320000000000001,"15min":1.3740000000000001},"min":{"1min":0.98599999999999999,"5min":0.82899999999999996,"15min":0.82899999999999996},"max":{"1min":1.732,"5min":1.893,"15min":1.893},"last":1.079},{"interface":"front","average":{"1min":1.2370000000000001,"5min":1.22,"15min":1.2390000000000001},"min":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"max":{"1min":1.6879999999999999,"5min":1.6879999999999999,"15min":1.6879999999999999},"last":1.153}]}]},{"osd":5,"up_from":34,"seq":146028888107,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":0.83299999999999996,"5min":0.86399999999999999,"15min":0.876},"min":{"1min":0.67500000000000004,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.04,"5min":1.1930000000000001,"15min":1.1930000000000001},"last":0.81599999999999995},{"interface":"front","average":{"1min":0.90500000000000003,"5min":0.89100000000000001,"15min":0.88700000000000001},"min":{"1min":0.67500000000000004,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.1240000000000001,"5min":1.304,"15min":1.304},"last":1.252}]},{"osd":1,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":0.83999999999999997,"5min":0.79400000000000004,"15min":0.77000000000000002},"min":{"1min":0.68000000000000005,"5min":0.495,"15min":0.495},"max":{"1min":1.196,"5min":1.347,"15min":1.347},"last":0.83599999999999997},{"interface":"front","average":{"1min":0.82899999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"min":{"1min":0.64100000000000001,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.155,"5min":1.2889999999999999,"15min":1.2889999999999999},"last":0.71899999999999997}]},{"osd":2,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.0029999999999999,"5min":0.99299999999999999,"15min":0.98999999999999999},"min":{"1min":0.77700000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.419,"5min":1.419,"15min":1.419},"last":1.4950000000000001},{"interface":"front","average":{"1min":1.048,"5min":1.024,"15min":1.016},"min":{"1min":0.85999999999999999,"5min":0.751,"15min":0.751},"max":{"1min":1.2110000000000001,"5min":1.4039999999999999,"15min":1.4039999999999999},"last":1.2110000000000001}]},{"osd":3,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.0469999999999999,"5min":0.96499999999999997,"15min":0.94699999999999995},"min":{"1min":0.71699999999999997,"5min":0.52500000000000002,"15min":0.52500000000000002},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":1.599},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0640000000000001,"15min":1.042},"min":{"1min":0.79200000000000004,"5min":0.65800000000000003,"15min":0.65800000000000003},"max":{"1min":1.2789999999999999,"5min":1.403,"15min":1.403},"last":1.6539999999999999}]},{"osd":4,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.157,"5min":1.1619999999999999,"15min":1.165},"min":{"1min":0.89000000000000001,"5min":0.89000000000000001,"15min":0.89000000000000001},"max":{"1min":1.4350000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":1.528},{"interface":"front","average":{"1min":1.147,"5min":1.1299999999999999,"15min":1.151},"min":{"1min":0.92200000000000004,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.637,"5min":1.637,"15min":1.637},"last":1.0669999999999999}]},{"osd":6,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.228,"5min":1.1639999999999999,"15min":1.141},"min":{"1min":0.95099999999999996,"5min":0.748,"15min":0.748},"max":{"1min":1.5669999999999999,"5min":1.5669999999999999,"15min":1.5669999999999999},"last":1.7230000000000001},{"interface":"front","average":{"1min":1.29,"5min":1.2629999999999999,"15min":1.26},"min":{"1min":1.125,"5min":0.94199999999999995,"15min":0.94199999999999995},"max":{"1min":1.639,"5min":1.6919999999999999,"15min":1.6919999999999999},"last":1.3759999999999999}]},{"osd":7,"last update":"Fri Feb 23 00:33:34 2024","interfaces":[{"interface":"back","average":{"1min":1.335,"5min":1.2050000000000001,"15min":1.165},"min":{"1min":1.129,"5min":0.80700000000000005,"15min":0.80700000000000005},"max":{"1min":1.6439999999999999,"5min":1.6439999999999999,"15min":1.6439999999999999},"last":1.8160000000000001},{"interface":"front","average":{"1min":1.3740000000000001,"5min":1.272,"15min":1.242},"min":{"1min":1.1830000000000001,"5min":0.77200000000000002,"15min":0.77200000000000002},"max":{"1min":1.7030000000000001,"5min":1.7030000000000001,"15min":1.7030000000000001},"last":1.752}]}]},{"osd":1,"up_from":20,"seq":85899345966,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:11 2024","interfaces":[{"interface":"back","average":{"1min":0.90200000000000002,"5min":0.86799999999999999,"15min":0.84399999999999997},"min":{"1min":0.60399999999999998,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.1579999999999999,"5min":1.429,"15min":1.429},"last":1.159},{"interface":"front","average":{"1min":0.89700000000000002,"5min":0.83799999999999997,"15min":0.82199999999999995},"min":{"1min":0.66800000000000004,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":1.3999999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.94199999999999995}]},{"osd":2,"last update":"Fri Feb 23 00:33:11 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.88600000000000001,"15min":0.874},"min":{"1min":0.63900000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.46,"5min":1.5009999999999999,"15min":1.5009999999999999},"last":0.65200000000000002},{"interface":"front","average":{"1min":0.874,"5min":0.89600000000000002,"15min":0.90200000000000002},"min":{"1min":0.68899999999999995,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.304,"5min":1.335,"15min":1.335},"last":0.86899999999999999}]},{"osd":3,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.88100000000000001,"5min":0.92000000000000004,"15min":0.92300000000000004},"min":{"1min":0.65800000000000003,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.3560000000000001,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":1.079},{"interface":"front","average":{"1min":0.99299999999999999,"5min":0.94499999999999995,"15min":0.92800000000000005},"min":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"max":{"1min":1.2490000000000001,"5min":1.397,"15min":1.397},"last":0.75}]},{"osd":4,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.91700000000000004,"5min":0.93400000000000005,"15min":0.93500000000000005},"min":{"1min":0.69999999999999996,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.276,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":1.0620000000000001},{"interface":"front","average":{"1min":0.997,"5min":1.0229999999999999,"15min":1.0329999999999999},"min":{"1min":0.73399999999999999,"5min":0.71099999999999997,"15min":0.71099999999999997},"max":{"1min":1.224,"5min":1.395,"15min":1.395},"last":1.228}]},{"osd":5,"last update":"Fri Feb 23 00:33:32 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.97999999999999998,"15min":0.97599999999999998},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":1.3720000000000001,"5min":1.458,"15min":1.458},"last":0.97499999999999998},{"interface":"front","average":{"1min":1.163,"5min":1.1699999999999999,"15min":1.179},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.409,"5min":1.546,"15min":1.546},"last":1.133}]},{"osd":6,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.1020000000000001,"5min":1.117,"15min":1.117},"min":{"1min":0.79900000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.425,"5min":1.587,"15min":1.587},"last":1.103},{"interface":"front","average":{"1min":1.107,"5min":1.1759999999999999,"15min":1.206},"min":{"1min":0.63800000000000001,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.264,"5min":1.605,"15min":1.605},"last":1.022}]},{"osd":7,"last update":"Fri Feb 23 00:33:32 2024","interfaces":[{"interface":"back","average":{"1min":1.077,"5min":1.1619999999999999,"15min":1.1830000000000001},"min":{"1min":0.70199999999999996,"5min":0.627,"15min":0.627},"max":{"1min":1.3839999999999999,"5min":1.6679999999999999,"15min":1.6679999999999999},"last":1.177},{"interface":"front","average":{"1min":1.089,"5min":1.1439999999999999,"15min":1.1519999999999999},"min":{"1min":0.61299999999999999,"5min":0.48199999999999998,"15min":0.48199999999999998},"max":{"1min":1.482,"5min":1.6930000000000001,"15min":1.6930000000000001},"last":1.206}]}]},{"osd":0,"up_from":16,"seq":68719476784,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Fri Feb 23 00:33:13 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.84799999999999998,"15min":0.85199999999999998},"min":{"1min":0.621,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":0.96199999999999997,"5min":1.984,"15min":1.984},"last":0.72499999999999998},{"interface":"front","average":{"1min":0.871,"5min":0.874,"15min":0.86199999999999999},"min":{"1min":0.59799999999999998,"5min":0.59599999999999997,"15min":0.59599999999999997},"max":{"1min":1.1339999999999999,"5min":2.1619999999999999,"15min":2.1619999999999999},"last":0.94399999999999995}]},{"osd":2,"last update":"Fri Feb 23 00:33:13 2024","interfaces":[{"interface":"back","average":{"1min":0.72799999999999998,"5min":0.76700000000000002,"15min":0.77200000000000002},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":0.89600000000000002,"5min":2.5379999999999998,"15min":2.5379999999999998},"last":0.60799999999999998},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.77500000000000002,"15min":0.76800000000000002},"min":{"1min":0.62,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.0620000000000001,"5min":2.4390000000000001,"15min":2.4390000000000001},"last":0.65100000000000002}]},{"osd":3,"last update":"Fri Feb 23 00:33:17 2024","interfaces":[{"interface":"back","average":{"1min":0.97599999999999998,"5min":0.93100000000000005,"15min":0.90600000000000003},"min":{"1min":0.68500000000000005,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.208,"5min":2.2810000000000001,"15min":2.2810000000000001},"last":1.087},{"interface":"front","average":{"1min":1.0309999999999999,"5min":1.0069999999999999,"15min":1.0089999999999999},"min":{"1min":0.84499999999999997,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.2190000000000001,"5min":1.2589999999999999,"15min":1.2589999999999999},"last":0.996}]},{"osd":4,"last update":"Fri Feb 23 00:33:17 2024","interfaces":[{"interface":"back","average":{"1min":0.90000000000000002,"5min":0.90200000000000002,"15min":0.89500000000000002},"min":{"1min":0.61499999999999999,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.1120000000000001,"5min":2.0840000000000001,"15min":2.0840000000000001},"last":0.67700000000000005},{"interface":"front","average":{"1min":0.997,"5min":1.0209999999999999,"15min":1.0249999999999999},"min":{"1min":0.79500000000000004,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.151,"5min":2.601,"15min":2.601},"last":0.90700000000000003}]},{"osd":5,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.95699999999999996,"5min":0.96399999999999997,"15min":0.96199999999999997},"min":{"1min":0.74099999999999999,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.133,"5min":1.8939999999999999,"15min":1.8939999999999999},"last":0.80500000000000005},{"interface":"front","average":{"1min":1.109,"5min":1.0840000000000001,"15min":1.0660000000000001},"min":{"1min":0.85999999999999999,"5min":0.79100000000000004,"15min":0.79100000000000004},"max":{"1min":1.2270000000000001,"5min":2.4700000000000002,"15min":2.4700000000000002},"last":1.1479999999999999}]},{"osd":6,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.069,"15min":1.0600000000000001},"min":{"1min":0.83599999999999997,"5min":0.748,"15min":0.748},"max":{"1min":1.296,"5min":3.177,"15min":3.177},"last":1.1970000000000001},{"interface":"front","average":{"1min":1.101,"5min":1.117,"15min":1.121},"min":{"1min":0.92000000000000004,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.4299999999999999,"5min":2.641,"15min":2.641},"last":1.1060000000000001}]},{"osd":7,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.1870000000000001,"5min":1.1850000000000001,"15min":1.1870000000000001},"min":{"1min":0.93400000000000005,"5min":0.88400000000000001,"15min":0.88400000000000001},"max":{"1min":1.506,"5min":1.7430000000000001,"15min":1.7430000000000001},"last":1.1870000000000001},{"interface":"front","average":{"1min":1.26,"5min":1.254,"15min":1.2490000000000001},"min":{"1min":1.0680000000000001,"5min":0.95599999999999996,"15min":0.95599999999999996},"max":{"1min":1.55,"5min":2.3660000000000001,"15min":2.3660000000000001},"last":1.2450000000000001}]}]},{"osd":2,"up_from":21,"seq":90194313263,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:14 2024","interfaces":[{"interface":"back","average":{"1min":0.71699999999999997,"5min":0.66500000000000004,"15min":0.64500000000000002},"min":{"1min":0.53200000000000003,"5min":0.496,"15min":0.496},"max":{"1min":1.2310000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":0.91800000000000004},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.76800000000000002,"15min":0.77000000000000002},"min":{"1min":0.56999999999999995,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":1.244,"5min":1.244,"15min":1.244},"last":0.53100000000000003}]},{"osd":1,"last update":"Fri Feb 23 00:33:14 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"min":{"1min":0.66000000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.143,"5min":1.262,"15min":1.262},"last":0.66100000000000003},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.97799999999999998,"15min":0.98099999999999998},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.1339999999999999,"5min":1.2689999999999999,"15min":1.2689999999999999},"last":1.0489999999999999}]},{"osd":3,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.95199999999999996,"5min":0.96599999999999997,"15min":0.98299999999999998},"min":{"1min":0.71699999999999997,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.198,"5min":1.286,"15min":1.286},"last":0.86599999999999999},{"interface":"front","average":{"1min":1.018,"5min":0.98199999999999998,"15min":0.97099999999999997},"min":{"1min":0.88400000000000001,"5min":0.623,"15min":0.623},"max":{"1min":1.2110000000000001,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.88600000000000001}]},{"osd":4,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.81499999999999995,"5min":0.88900000000000001,"15min":0.91300000000000003},"min":{"1min":0.61799999999999999,"5min":0.54600000000000004,"15min":0.54600000000000004},"max":{"1min":1.2649999999999999,"5min":1.28,"15min":1.28},"last":0.73999999999999999},{"interface":"front","average":{"1min":0.95299999999999996,"5min":0.91800000000000004,"15min":0.92100000000000004},"min":{"1min":0.752,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.1719999999999999,"5min":1.21,"15min":1.21},"last":1.2490000000000001}]},{"osd":5,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.98699999999999999,"5min":0.97999999999999998,"15min":0.97999999999999998},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.3080000000000001,"5min":1.3600000000000001,"15min":1.3600000000000001},"last":0.78900000000000003},{"interface":"front","average":{"1min":1.117,"5min":1.097,"15min":1.0940000000000001},"min":{"1min":0.81200000000000006,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.2929999999999999,"5min":1.2929999999999999,"15min":1.2929999999999999},"last":1.018}]},{"osd":6,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":1.0409999999999999,"15min":1.0429999999999999},"min":{"1min":0.71699999999999997,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.395,"5min":1.395,"15min":1.395},"last":1.1299999999999999},{"interface":"front","average":{"1min":1.087,"5min":1.0580000000000001,"15min":1.0680000000000001},"min":{"1min":0.82699999999999996,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":1.3580000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.95999999999999996}]},{"osd":7,"last update":"Fri Feb 23 00:33:29 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.169,"15min":1.1870000000000001},"min":{"1min":0.92000000000000004,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.3400000000000001,"5min":1.6859999999999999,"15min":1.6859999999999999},"last":1.569},{"interface":"front","average":{"1min":1.1839999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"min":{"1min":0.84199999999999997,"5min":0.77500000000000002,"15min":0.77500000000000002},"max":{"1min":1.427,"5min":1.6970000000000001,"15min":1.6970000000000001},"last":0.97099999999999997}]}]},{"osd":4,"up_from":26,"seq":111669149741,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.68500000000000005,"5min":0.69899999999999995,"15min":0.70899999999999996},"min":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":0.87,"5min":1.032,"15min":1.032},"last":0.73599999999999999},{"interface":"front","average":{"1min":0.76600000000000001,"5min":0.75800000000000001,"15min":0.75600000000000001},"min":{"1min":0.59099999999999997,"5min":0.46200000000000002,"15min":0.46200000000000002},"max":{"1min":1.137,"5min":1.2609999999999999,"15min":1.2609999999999999},"last":1.0960000000000001}]},{"osd":1,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.78300000000000003,"5min":0.84299999999999997,"15min":0.85599999999999998},"min":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.0229999999999999,"5min":1.244,"15min":1.244},"last":0.99399999999999999},{"interface":"front","average":{"1min":0.85999999999999999,"5min":0.89500000000000002,"15min":0.90000000000000002},"min":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.0589999999999999,"5min":1.407,"15min":1.407},"last":0.96599999999999997}]},{"osd":2,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.80000000000000004,"15min":0.80900000000000005},"min":{"1min":0.57299999999999995,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.93799999999999994,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.77900000000000003},{"interface":"front","average":{"1min":0.80800000000000005,"5min":0.81299999999999994,"15min":0.81000000000000005},"min":{"1min":0.59899999999999998,"5min":0.51400000000000001,"15min":0.51400000000000001},"max":{"1min":1.0920000000000001,"5min":1.47,"15min":1.47},"last":0.81000000000000005}]},{"osd":3,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.96699999999999997,"15min":0.96699999999999997},"min":{"1min":0.63500000000000001,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.1859999999999999,"5min":1.1859999999999999,"15min":1.1859999999999999},"last":1.1910000000000001},{"interface":"front","average":{"1min":1.022,"5min":0.97099999999999997,"15min":0.94599999999999995},"min":{"1min":0.70299999999999996,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.2210000000000001,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":1.244}]},{"osd":5,"last update":"Fri Feb 23 00:33:30 2024","interfaces":[{"interface":"back","average":{"1min":1.036,"5min":1.032,"15min":1.018},"min":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"max":{"1min":1.196,"5min":2.0489999999999999,"15min":2.0489999999999999},"last":1.3380000000000001},{"interface":"front","average":{"1min":1.083,"5min":1.0600000000000001,"15min":1.056},"min":{"1min":0.92100000000000004,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.4450000000000001,"5min":1.4450000000000001,"15min":1.4450000000000001},"last":1.0529999999999999}]},{"osd":6,"last update":"Fri Feb 23 00:33:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0700000000000001,"5min":1.0549999999999999,"15min":1.048},"min":{"1min":0.65800000000000003,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.4370000000000001,"5min":1.478,"15min":1.478},"last":0.84899999999999998},{"interface":"front","average":{"1min":1.095,"5min":1.093,"15min":1.097},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.4410000000000001,"5min":1.889,"15min":1.889},"last":1.3069999999999999}]},{"osd":7,"last update":"Fri Feb 23 00:33:37 2024","interfaces":[{"interface":"back","average":{"1min":1.1870000000000001,"5min":1.1739999999999999,"15min":1.1639999999999999},"min":{"1min":0.91200000000000003,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.462,"5min":1.8109999999999999,"15min":1.8109999999999999},"last":1.3839999999999999},{"interface":"front","average":{"1min":1.1819999999999999,"5min":1.139,"15min":1.113},"min":{"1min":0.92600000000000005,"5min":0.77400000000000002,"15min":0.77400000000000002},"max":{"1min":1.327,"5min":1.661,"15min":1.661},"last":1.4219999999999999}]}]},{"osd":3,"up_from":27,"seq":115964117037,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.80600000000000005,"15min":0.80200000000000005},"min":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.706,"5min":1.706,"15min":1.706},"last":0.90800000000000003},{"interface":"front","average":{"1min":0.86899999999999999,"5min":0.91300000000000003,"15min":0.94499999999999995},"min":{"1min":0.58799999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.286,"5min":1.286,"15min":1.286},"last":0.65100000000000002}]},{"osd":1,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.90600000000000003,"5min":0.78200000000000003,"15min":0.752},"min":{"1min":0.45800000000000002,"5min":0.37,"15min":0.37},"max":{"1min":2.0870000000000002,"5min":2.0870000000000002,"15min":2.0870000000000002},"last":0.69499999999999995},{"interface":"front","average":{"1min":0.80200000000000005,"5min":0.78400000000000003,"15min":0.76700000000000002},"min":{"1min":0.48399999999999999,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":1.042,"5min":1.282,"15min":1.282},"last":0.82499999999999996}]},{"osd":2,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.91000000000000003,"15min":0.90200000000000002},"min":{"1min":0.69899999999999995,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.278,"5min":1.278,"15min":1.278},"last":0.73499999999999999},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.0329999999999999,"15min":1.022},"min":{"1min":0.872,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.631,"5min":1.631,"15min":1.631},"last":1.032}]},{"osd":4,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0089999999999999,"5min":0.98199999999999998,"15min":0.98599999999999999},"min":{"1min":0.70299999999999996,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.25,"5min":1.25,"15min":1.25},"last":0.89600000000000002},{"interface":"front","average":{"1min":0.95499999999999996,"5min":0.92100000000000004,"15min":0.91800000000000004},"min":{"1min":0.71999999999999997,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.3169999999999999,"5min":1.3169999999999999,"15min":1.3169999999999999},"last":1.008}]},{"osd":5,"last update":"Fri Feb 23 00:33:24 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":1.0069999999999999,"15min":1.0149999999999999},"min":{"1min":0.58199999999999996,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":1.46,"5min":1.46,"15min":1.46},"last":0.96599999999999997},{"interface":"front","average":{"1min":1.02,"5min":0.95999999999999996,"15min":0.95399999999999996},"min":{"1min":0.57599999999999996,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.3839999999999999,"5min":1.3839999999999999,"15min":1.3839999999999999},"last":0.93899999999999995}]},{"osd":6,"last update":"Fri Feb 23 00:33:24 2024","interfaces":[{"interface":"back","average":{"1min":1.115,"5min":1.105,"15min":1.101},"min":{"1min":0.84399999999999997,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.6779999999999999,"5min":1.716,"15min":1.716},"last":1.1220000000000001},{"interface":"front","average":{"1min":1.1890000000000001,"5min":1.171,"15min":1.1699999999999999},"min":{"1min":0.81000000000000005,"5min":0.76100000000000001,"15min":0.76100000000000001},"max":{"1min":1.792,"5min":1.792,"15min":1.792},"last":1.083}]},{"osd":7,"last update":"Fri Feb 23 00:33:29 2024","interfaces":[{"interface":"back","average":{"1min":1.173,"5min":1.175,"15min":1.175},"min":{"1min":0.86399999999999999,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.488,"5min":1.635,"15min":1.635},"last":1.381},{"interface":"front","average":{"1min":1.1659999999999999,"5min":1.1319999999999999,"15min":1.1259999999999999},"min":{"1min":0.88800000000000001,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.5600000000000001,"5min":1.5600000000000001,"15min":1.5600000000000001},"last":1.1919999999999999}]}]},{"osd":6,"up_from":32,"seq":137438953516,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.72799999999999998,"5min":0.72199999999999998,"15min":0.71499999999999997},"min":{"1min":0.52400000000000002,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.026,"5min":1.129,"15min":1.129},"last":0.58799999999999997},{"interface":"front","average":{"1min":0.75600000000000001,"5min":0.79600000000000004,"15min":0.79200000000000004},"min":{"1min":0.56599999999999995,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.026,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.65100000000000002}]},{"osd":1,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.91100000000000003,"15min":0.93000000000000005},"min":{"1min":0.65000000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.0629999999999999,"5min":1.2869999999999999,"15min":1.2869999999999999},"last":0.745},{"interface":"front","average":{"1min":0.97799999999999998,"5min":0.94599999999999995,"15min":0.92600000000000005},"min":{"1min":0.80600000000000005,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.1160000000000001,"5min":1.8640000000000001,"15min":1.8640000000000001},"last":0.95599999999999996}]},{"osd":2,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.876,"15min":0.87},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.2430000000000001,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":0.89100000000000001},{"interface":"front","average":{"1min":0.80700000000000005,"5min":0.79700000000000004,"15min":0.78100000000000003},"min":{"1min":0.60699999999999998,"5min":0.503,"15min":0.503},"max":{"1min":1.0549999999999999,"5min":1.111,"15min":1.111},"last":0.86499999999999999}]},{"osd":3,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.92200000000000004,"5min":0.93799999999999994,"15min":0.93700000000000006},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.101,"5min":1.5229999999999999,"15min":1.5229999999999999},"last":0.82799999999999996},{"interface":"front","average":{"1min":1.0349999999999999,"5min":1.0449999999999999,"15min":1.0349999999999999},"min":{"1min":0.79000000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"max":{"1min":1.252,"5min":2.052,"15min":2.052},"last":1.0049999999999999}]},{"osd":4,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":1.01,"15min":1.0169999999999999},"min":{"1min":0.65800000000000003,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.2030000000000001,"5min":1.4330000000000001,"15min":1.4330000000000001},"last":0.96899999999999997},{"interface":"front","average":{"1min":1.0189999999999999,"5min":1.036,"15min":1.0329999999999999},"min":{"1min":0.61099999999999999,"5min":0.61099999999999999,"15min":0.61099999999999999},"max":{"1min":1.2430000000000001,"5min":1.5289999999999999,"15min":1.5289999999999999},"last":0.93100000000000005}]},{"osd":5,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.119,"5min":1.1399999999999999,"15min":1.135},"min":{"1min":0.93700000000000006,"5min":0.873,"15min":0.873},"max":{"1min":1.3089999999999999,"5min":1.76,"15min":1.76},"last":1.0249999999999999},{"interface":"front","average":{"1min":1.175,"5min":1.1859999999999999,"15min":1.177},"min":{"1min":0.98399999999999999,"5min":0.85899999999999999,"15min":0.85899999999999999},"max":{"1min":1.409,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":1.123}]},{"osd":7,"last update":"Fri Feb 23 00:33:36 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.228,"15min":1.208},"min":{"1min":1.0289999999999999,"5min":0.89000000000000001,"15min":0.89000000000000001},"max":{"1min":1.429,"5min":2.3180000000000001,"15min":2.3180000000000001},"last":1.2010000000000001},{"interface":"front","average":{"1min":1.2230000000000001,"5min":1.232,"15min":1.214},"min":{"1min":1.03,"5min":0.88300000000000001,"15min":0.88300000000000001},"max":{"1min":1.4930000000000001,"5min":1.885,"15min":1.885},"last":1.2989999999999999}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-02-23T00:33:46.495 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph pg dump --format=json 2024-02-23T00:33:46.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:46 smithi142 bash[20802]: cluster 2024-02-23T00:33:45.165710+0000 mgr.smithi046.lplrtl (mgr.14184) 197 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:47.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:47 smithi142 bash[20802]: audit 2024-02-23T00:33:45.835768+0000 mgr.smithi046.lplrtl (mgr.14184) 198 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:33:47.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:47 smithi142 bash[20802]: audit 2024-02-23T00:33:46.679027+0000 mon.smithi046 (mon.0) 595 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:33:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:47 smithi046 bash[16275]: audit 2024-02-23T00:33:45.835768+0000 mgr.smithi046.lplrtl (mgr.14184) 198 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:33:47.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:47 smithi046 bash[16275]: audit 2024-02-23T00:33:46.679027+0000 mon.smithi046 (mon.0) 595 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:33:48.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:48 smithi142 bash[20802]: cluster 2024-02-23T00:33:47.166321+0000 mgr.smithi046.lplrtl (mgr.14184) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:48.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:48 smithi046 bash[16275]: cluster 2024-02-23T00:33:47.166321+0000 mgr.smithi046.lplrtl (mgr.14184) 199 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:50.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:50 smithi142 bash[20802]: cluster 2024-02-23T00:33:49.166988+0000 mgr.smithi046.lplrtl (mgr.14184) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:50.556 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:50 smithi046 bash[16275]: cluster 2024-02-23T00:33:49.166988+0000 mgr.smithi046.lplrtl (mgr.14184) 200 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:51.347 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:33:52.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:52 smithi142 bash[20802]: cluster 2024-02-23T00:33:51.167586+0000 mgr.smithi046.lplrtl (mgr.14184) 201 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:52.530 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:52 smithi046 bash[16275]: cluster 2024-02-23T00:33:51.167586+0000 mgr.smithi046.lplrtl (mgr.14184) 201 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:53.864 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.519513+0000 mon.smithi046 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:53.864 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.681531+0000 mon.smithi046 (mon.0) 597 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:53.864 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.974022+0000 mon.smithi046 (mon.0) 598 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:33:53.864 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.975187+0000 mon.smithi046 (mon.0) 599 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:33:53.864 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.981511+0000 mon.smithi046 (mon.0) 600 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:53.865 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:53 smithi046 bash[16275]: audit 2024-02-23T00:33:52.988054+0000 mon.smithi046 (mon.0) 601 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:33:54.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.519513+0000 mon.smithi046 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.681531+0000 mon.smithi046 (mon.0) 597 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.974022+0000 mon.smithi046 (mon.0) 598 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:33:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.975187+0000 mon.smithi046 (mon.0) 599 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:33:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.981511+0000 mon.smithi046 (mon.0) 600 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:33:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:53 smithi142 bash[20802]: audit 2024-02-23T00:33:52.988054+0000 mon.smithi046 (mon.0) 601 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:33:54.290 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:33:54.292 INFO:teuthology.orchestra.run.smithi046.stderr:dumped all 2024-02-23T00:33:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:54 smithi046 bash[16275]: cluster 2024-02-23T00:33:53.168187+0000 mgr.smithi046.lplrtl (mgr.14184) 202 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:54 smithi046 bash[16275]: audit 2024-02-23T00:33:54.280976+0000 mgr.smithi046.lplrtl (mgr.14184) 203 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:33:54.924 INFO:teuthology.orchestra.run.smithi046.stdout:{"pg_ready":true,"pg_map":{"version":187,"stamp":"2024-02-23T00:33:53.167894+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":2379872,"kb_used_data":3104,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548576,"statfs":{"total":767926730752,"available":765489741824,"internally_reserved":0,"allocated":3178496,"data_stored":1248952,"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":40,"state":"active+clean","last_fresh":"2024-02-23T00:30:28.538596+0000","last_change":"2024-02-23T00:30:28.538596+0000","last_active":"2024-02-23T00:30:28.538596+0000","last_peered":"2024-02-23T00:30:28.538596+0000","last_clean":"2024-02-23T00:30:28.538596+0000","last_became_active":"2024-02-23T00:30:28.538142+0000","last_became_peered":"2024-02-23T00:30:28.538142+0000","last_unstale":"2024-02-23T00:30:28.538596+0000","last_undegraded":"2024-02-23T00:30:28.538596+0000","last_fullsized":"2024-02-23T00:30:28.538596+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-23T00:30:09.396562+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-23T00:30:09.396562+0000","last_clean_scrub_stamp":"2024-02-23T00:30:09.396562+0000","log_size":0,"ondisk_log_size":0,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.92300000000000004,"5min":0.88900000000000001,"15min":0.88400000000000001},"min":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"max":{"1min":1.1639999999999999,"5min":1.302,"15min":1.302},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.91000000000000003,"5min":0.98199999999999998,"15min":1.0209999999999999},"min":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"max":{"1min":1.383,"5min":1.5569999999999999,"15min":1.5569999999999999},"last":0.84799999999999998}]},{"osd":1,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.879,"5min":0.86899999999999999,"15min":0.86199999999999999},"min":{"1min":0.496,"5min":0.496,"15min":0.496},"max":{"1min":1.373,"5min":1.8420000000000001,"15min":1.8420000000000001},"last":0.90100000000000002},{"interface":"front","average":{"1min":0.96599999999999997,"5min":0.93700000000000006,"15min":0.93799999999999994},"min":{"1min":0.65100000000000002,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":1.516,"5min":1.516,"15min":1.516},"last":0.60199999999999998}]},{"osd":2,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":0.90500000000000003,"15min":0.90900000000000003},"min":{"1min":0.67100000000000004,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.153,"5min":1.2350000000000001,"15min":1.2350000000000001},"last":0.877},{"interface":"front","average":{"1min":1.0720000000000001,"5min":1.0149999999999999,"15min":1.0069999999999999},"min":{"1min":0.76900000000000002,"5min":0.71599999999999997,"15min":0.71599999999999997},"max":{"1min":1.425,"5min":1.425,"15min":1.425},"last":0.94899999999999995}]},{"osd":3,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.0309999999999999,"5min":0.98499999999999999,"15min":1.002},"min":{"1min":0.65400000000000003,"5min":0.59299999999999997,"15min":0.59299999999999997},"max":{"1min":1.3600000000000001,"5min":1.47,"15min":1.47},"last":0.65500000000000003},{"interface":"front","average":{"1min":0.95199999999999996,"5min":0.98399999999999999,"15min":1.01},"min":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":1.3400000000000001,"5min":2.157,"15min":2.157},"last":0.72399999999999998}]},{"osd":4,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.0129999999999999,"5min":1.048,"15min":1.0580000000000001},"min":{"1min":0.68300000000000005,"5min":0.68300000000000005,"15min":0.68300000000000005},"max":{"1min":1.3200000000000001,"5min":1.3700000000000001,"15min":1.3700000000000001},"last":1.0009999999999999},{"interface":"front","average":{"1min":1.2370000000000001,"5min":1.1890000000000001,"15min":1.1759999999999999},"min":{"1min":0.872,"5min":0.66700000000000004,"15min":0.66700000000000004},"max":{"1min":1.6799999999999999,"5min":3.4449999999999998,"15min":3.4449999999999998},"last":0.79300000000000004}]},{"osd":5,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.25,"5min":1.1619999999999999,"15min":1.153},"min":{"1min":0.61099999999999999,"5min":0.504,"15min":0.504},"max":{"1min":1.7070000000000001,"5min":1.8100000000000001,"15min":1.8100000000000001},"last":0.67800000000000005},{"interface":"front","average":{"1min":1.268,"5min":1.292,"15min":1.3460000000000001},"min":{"1min":0.88500000000000001,"5min":0.747,"15min":0.747},"max":{"1min":1.6739999999999999,"5min":2.637,"15min":2.637},"last":0.70099999999999996}]},{"osd":6,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.304,"5min":1.3320000000000001,"15min":1.3740000000000001},"min":{"1min":0.98599999999999999,"5min":0.82899999999999996,"15min":0.82899999999999996},"max":{"1min":1.732,"5min":1.893,"15min":1.893},"last":0.92700000000000005},{"interface":"front","average":{"1min":1.2370000000000001,"5min":1.22,"15min":1.2390000000000001},"min":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"max":{"1min":1.6879999999999999,"5min":1.6879999999999999,"15min":1.6879999999999999},"last":1.2070000000000001}]}]},{"osd":5,"up_from":34,"seq":146028888109,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":0.83299999999999996,"5min":0.86399999999999999,"15min":0.876},"min":{"1min":0.67500000000000004,"5min":0.60399999999999998,"15min":0.60399999999999998},"max":{"1min":1.04,"5min":1.1930000000000001,"15min":1.1930000000000001},"last":0.90800000000000003},{"interface":"front","average":{"1min":0.90500000000000003,"5min":0.89100000000000001,"15min":0.88700000000000001},"min":{"1min":0.67500000000000004,"5min":0.60699999999999998,"15min":0.60699999999999998},"max":{"1min":1.1240000000000001,"5min":1.304,"15min":1.304},"last":0.96299999999999997}]},{"osd":1,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":0.83999999999999997,"5min":0.79400000000000004,"15min":0.77000000000000002},"min":{"1min":0.68000000000000005,"5min":0.495,"15min":0.495},"max":{"1min":1.196,"5min":1.347,"15min":1.347},"last":0.67500000000000004},{"interface":"front","average":{"1min":0.82899999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"min":{"1min":0.64100000000000001,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.155,"5min":1.2889999999999999,"15min":1.2889999999999999},"last":0.81499999999999995}]},{"osd":2,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.0029999999999999,"5min":0.99299999999999999,"15min":0.98999999999999999},"min":{"1min":0.77700000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"max":{"1min":1.419,"5min":1.419,"15min":1.419},"last":0.85499999999999998},{"interface":"front","average":{"1min":1.048,"5min":1.024,"15min":1.016},"min":{"1min":0.85999999999999999,"5min":0.751,"15min":0.751},"max":{"1min":1.2110000000000001,"5min":1.4039999999999999,"15min":1.4039999999999999},"last":1.2}]},{"osd":3,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.0469999999999999,"5min":0.96499999999999997,"15min":0.94699999999999995},"min":{"1min":0.71699999999999997,"5min":0.52500000000000002,"15min":0.52500000000000002},"max":{"1min":1.335,"5min":1.335,"15min":1.335},"last":0.58299999999999996},{"interface":"front","average":{"1min":1.0640000000000001,"5min":1.0640000000000001,"15min":1.042},"min":{"1min":0.79200000000000004,"5min":0.65800000000000003,"15min":0.65800000000000003},"max":{"1min":1.2789999999999999,"5min":1.403,"15min":1.403},"last":1.0549999999999999}]},{"osd":4,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.157,"5min":1.1619999999999999,"15min":1.165},"min":{"1min":0.89000000000000001,"5min":0.89000000000000001,"15min":0.89000000000000001},"max":{"1min":1.4350000000000001,"5min":1.4930000000000001,"15min":1.4930000000000001},"last":1.29},{"interface":"front","average":{"1min":1.147,"5min":1.1299999999999999,"15min":1.151},"min":{"1min":0.92200000000000004,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.637,"5min":1.637,"15min":1.637},"last":1.0069999999999999}]},{"osd":6,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.228,"5min":1.1639999999999999,"15min":1.141},"min":{"1min":0.95099999999999996,"5min":0.748,"15min":0.748},"max":{"1min":1.5669999999999999,"5min":1.5669999999999999,"15min":1.5669999999999999},"last":1.1279999999999999},{"interface":"front","average":{"1min":1.29,"5min":1.2629999999999999,"15min":1.26},"min":{"1min":1.125,"5min":0.94199999999999995,"15min":0.94199999999999995},"max":{"1min":1.639,"5min":1.6919999999999999,"15min":1.6919999999999999},"last":1.3580000000000001}]},{"osd":7,"last update":"Fri Feb 23 00:33:34 2024","interfaces":[{"interface":"back","average":{"1min":1.335,"5min":1.2050000000000001,"15min":1.165},"min":{"1min":1.129,"5min":0.80700000000000005,"15min":0.80700000000000005},"max":{"1min":1.6439999999999999,"5min":1.6439999999999999,"15min":1.6439999999999999},"last":1.23},{"interface":"front","average":{"1min":1.3740000000000001,"5min":1.272,"15min":1.242},"min":{"1min":1.1830000000000001,"5min":0.77200000000000002,"15min":0.77200000000000002},"max":{"1min":1.7030000000000001,"5min":1.7030000000000001,"15min":1.7030000000000001},"last":1.405}]}]},{"osd":1,"up_from":20,"seq":85899345968,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:11 2024","interfaces":[{"interface":"back","average":{"1min":0.90200000000000002,"5min":0.86799999999999999,"15min":0.84399999999999997},"min":{"1min":0.60399999999999998,"5min":0.53200000000000003,"15min":0.53200000000000003},"max":{"1min":1.1579999999999999,"5min":1.429,"15min":1.429},"last":0.71899999999999997},{"interface":"front","average":{"1min":0.89700000000000002,"5min":0.83799999999999997,"15min":0.82199999999999995},"min":{"1min":0.66800000000000004,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":1.3999999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.94499999999999995}]},{"osd":2,"last update":"Fri Feb 23 00:33:11 2024","interfaces":[{"interface":"back","average":{"1min":0.93200000000000005,"5min":0.88600000000000001,"15min":0.874},"min":{"1min":0.63900000000000001,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.46,"5min":1.5009999999999999,"15min":1.5009999999999999},"last":0.83099999999999996},{"interface":"front","average":{"1min":0.874,"5min":0.89600000000000002,"15min":0.90200000000000002},"min":{"1min":0.68899999999999995,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.304,"5min":1.335,"15min":1.335},"last":0.57299999999999995}]},{"osd":3,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.88100000000000001,"5min":0.92000000000000004,"15min":0.92300000000000004},"min":{"1min":0.65800000000000003,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.3560000000000001,"5min":1.4650000000000001,"15min":1.4650000000000001},"last":0.91900000000000004},{"interface":"front","average":{"1min":0.99299999999999999,"5min":0.94499999999999995,"15min":0.92800000000000005},"min":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"max":{"1min":1.2490000000000001,"5min":1.397,"15min":1.397},"last":1.0580000000000001}]},{"osd":4,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.91700000000000004,"5min":0.93400000000000005,"15min":0.93500000000000005},"min":{"1min":0.69999999999999996,"5min":0.52900000000000003,"15min":0.52900000000000003},"max":{"1min":1.276,"5min":1.3580000000000001,"15min":1.3580000000000001},"last":1.153},{"interface":"front","average":{"1min":0.997,"5min":1.0229999999999999,"15min":1.0329999999999999},"min":{"1min":0.73399999999999999,"5min":0.71099999999999997,"15min":0.71099999999999997},"max":{"1min":1.224,"5min":1.395,"15min":1.395},"last":0.86699999999999999}]},{"osd":5,"last update":"Fri Feb 23 00:33:32 2024","interfaces":[{"interface":"back","average":{"1min":0.99099999999999999,"5min":0.97999999999999998,"15min":0.97599999999999998},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":1.3720000000000001,"5min":1.458,"15min":1.458},"last":0.88400000000000001},{"interface":"front","average":{"1min":1.163,"5min":1.1699999999999999,"15min":1.179},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.409,"5min":1.546,"15min":1.546},"last":0.624}]},{"osd":6,"last update":"Fri Feb 23 00:33:25 2024","interfaces":[{"interface":"back","average":{"1min":1.1020000000000001,"5min":1.117,"15min":1.117},"min":{"1min":0.79900000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.425,"5min":1.587,"15min":1.587},"last":1.0880000000000001},{"interface":"front","average":{"1min":1.107,"5min":1.1759999999999999,"15min":1.206},"min":{"1min":0.63800000000000001,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.264,"5min":1.605,"15min":1.605},"last":0.80200000000000005}]},{"osd":7,"last update":"Fri Feb 23 00:33:32 2024","interfaces":[{"interface":"back","average":{"1min":1.077,"5min":1.1619999999999999,"15min":1.1830000000000001},"min":{"1min":0.70199999999999996,"5min":0.627,"15min":0.627},"max":{"1min":1.3839999999999999,"5min":1.6679999999999999,"15min":1.6679999999999999},"last":0.77800000000000002},{"interface":"front","average":{"1min":1.089,"5min":1.1439999999999999,"15min":1.1519999999999999},"min":{"1min":0.61299999999999999,"5min":0.48199999999999998,"15min":0.48199999999999998},"max":{"1min":1.482,"5min":1.6930000000000001,"15min":1.6930000000000001},"last":0.98999999999999999}]}]},{"osd":0,"up_from":16,"seq":68719476785,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Fri Feb 23 00:33:13 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.84799999999999998,"15min":0.85199999999999998},"min":{"1min":0.621,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":0.96199999999999997,"5min":1.984,"15min":1.984},"last":0.98799999999999999},{"interface":"front","average":{"1min":0.871,"5min":0.874,"15min":0.86199999999999999},"min":{"1min":0.59799999999999998,"5min":0.59599999999999997,"15min":0.59599999999999997},"max":{"1min":1.1339999999999999,"5min":2.1619999999999999,"15min":2.1619999999999999},"last":1.077}]},{"osd":2,"last update":"Fri Feb 23 00:33:13 2024","interfaces":[{"interface":"back","average":{"1min":0.72799999999999998,"5min":0.76700000000000002,"15min":0.77200000000000002},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":0.89600000000000002,"5min":2.5379999999999998,"15min":2.5379999999999998},"last":0.79100000000000004},{"interface":"front","average":{"1min":0.78300000000000003,"5min":0.77500000000000002,"15min":0.76800000000000002},"min":{"1min":0.62,"5min":0.54800000000000004,"15min":0.54800000000000004},"max":{"1min":1.0620000000000001,"5min":2.4390000000000001,"15min":2.4390000000000001},"last":0.74199999999999999}]},{"osd":3,"last update":"Fri Feb 23 00:33:17 2024","interfaces":[{"interface":"back","average":{"1min":0.97599999999999998,"5min":0.93100000000000005,"15min":0.90600000000000003},"min":{"1min":0.68500000000000005,"5min":0.60599999999999998,"15min":0.60599999999999998},"max":{"1min":1.208,"5min":2.2810000000000001,"15min":2.2810000000000001},"last":1.004},{"interface":"front","average":{"1min":1.0309999999999999,"5min":1.0069999999999999,"15min":1.0089999999999999},"min":{"1min":0.84499999999999997,"5min":0.73999999999999999,"15min":0.73999999999999999},"max":{"1min":1.2190000000000001,"5min":1.2589999999999999,"15min":1.2589999999999999},"last":1.0429999999999999}]},{"osd":4,"last update":"Fri Feb 23 00:33:17 2024","interfaces":[{"interface":"back","average":{"1min":0.90000000000000002,"5min":0.90200000000000002,"15min":0.89500000000000002},"min":{"1min":0.61499999999999999,"5min":0.55700000000000005,"15min":0.55700000000000005},"max":{"1min":1.1120000000000001,"5min":2.0840000000000001,"15min":2.0840000000000001},"last":0.86199999999999999},{"interface":"front","average":{"1min":0.997,"5min":1.0209999999999999,"15min":1.0249999999999999},"min":{"1min":0.79500000000000004,"5min":0.66300000000000003,"15min":0.66300000000000003},"max":{"1min":1.151,"5min":2.601,"15min":2.601},"last":1.113}]},{"osd":5,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.95699999999999996,"5min":0.96399999999999997,"15min":0.96199999999999997},"min":{"1min":0.74099999999999999,"5min":0.73299999999999998,"15min":0.73299999999999998},"max":{"1min":1.133,"5min":1.8939999999999999,"15min":1.8939999999999999},"last":0.90000000000000002},{"interface":"front","average":{"1min":1.109,"5min":1.0840000000000001,"15min":1.0660000000000001},"min":{"1min":0.85999999999999999,"5min":0.79100000000000004,"15min":0.79100000000000004},"max":{"1min":1.2270000000000001,"5min":2.4700000000000002,"15min":2.4700000000000002},"last":1.1879999999999999}]},{"osd":6,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":1.071,"5min":1.069,"15min":1.0600000000000001},"min":{"1min":0.83599999999999997,"5min":0.748,"15min":0.748},"max":{"1min":1.296,"5min":3.177,"15min":3.177},"last":1.1419999999999999},{"interface":"front","average":{"1min":1.101,"5min":1.117,"15min":1.121},"min":{"1min":0.92000000000000004,"5min":0.81200000000000006,"15min":0.81200000000000006},"max":{"1min":1.4299999999999999,"5min":2.641,"15min":2.641},"last":1.169}]},{"osd":7,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.1870000000000001,"5min":1.1850000000000001,"15min":1.1870000000000001},"min":{"1min":0.93400000000000005,"5min":0.88400000000000001,"15min":0.88400000000000001},"max":{"1min":1.506,"5min":1.7430000000000001,"15min":1.7430000000000001},"last":1.375},{"interface":"front","average":{"1min":1.26,"5min":1.254,"15min":1.2490000000000001},"min":{"1min":1.0680000000000001,"5min":0.95599999999999996,"15min":0.95599999999999996},"max":{"1min":1.55,"5min":2.3660000000000001,"15min":2.3660000000000001},"last":1.3300000000000001}]}]},{"osd":2,"up_from":21,"seq":90194313264,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:14 2024","interfaces":[{"interface":"back","average":{"1min":0.71699999999999997,"5min":0.66500000000000004,"15min":0.64500000000000002},"min":{"1min":0.53200000000000003,"5min":0.496,"15min":0.496},"max":{"1min":1.2310000000000001,"5min":1.2310000000000001,"15min":1.2310000000000001},"last":0.68899999999999995},{"interface":"front","average":{"1min":0.81000000000000005,"5min":0.76800000000000002,"15min":0.77000000000000002},"min":{"1min":0.56999999999999995,"5min":0.42299999999999999,"15min":0.42299999999999999},"max":{"1min":1.244,"5min":1.244,"15min":1.244},"last":0.75900000000000001}]},{"osd":1,"last update":"Fri Feb 23 00:33:14 2024","interfaces":[{"interface":"back","average":{"1min":0.93899999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"min":{"1min":0.66000000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.143,"5min":1.262,"15min":1.262},"last":0.66900000000000004},{"interface":"front","average":{"1min":0.94899999999999995,"5min":0.97799999999999998,"15min":0.98099999999999998},"min":{"1min":0.68500000000000005,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.1339999999999999,"5min":1.2689999999999999,"15min":1.2689999999999999},"last":0.98999999999999999}]},{"osd":3,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.95199999999999996,"5min":0.96599999999999997,"15min":0.98299999999999998},"min":{"1min":0.71699999999999997,"5min":0.70799999999999996,"15min":0.70799999999999996},"max":{"1min":1.198,"5min":1.286,"15min":1.286},"last":0.86899999999999999},{"interface":"front","average":{"1min":1.018,"5min":0.98199999999999998,"15min":0.97099999999999997},"min":{"1min":0.88400000000000001,"5min":0.623,"15min":0.623},"max":{"1min":1.2110000000000001,"5min":1.3009999999999999,"15min":1.3009999999999999},"last":0.92600000000000005}]},{"osd":4,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.81499999999999995,"5min":0.88900000000000001,"15min":0.91300000000000003},"min":{"1min":0.61799999999999999,"5min":0.54600000000000004,"15min":0.54600000000000004},"max":{"1min":1.2649999999999999,"5min":1.28,"15min":1.28},"last":0.84099999999999997},{"interface":"front","average":{"1min":0.95299999999999996,"5min":0.91800000000000004,"15min":0.92100000000000004},"min":{"1min":0.752,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.1719999999999999,"5min":1.21,"15min":1.21},"last":0.81799999999999995}]},{"osd":5,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.98699999999999999,"5min":0.97999999999999998,"15min":0.97999999999999998},"min":{"1min":0.61599999999999999,"5min":0.61599999999999999,"15min":0.61599999999999999},"max":{"1min":1.3080000000000001,"5min":1.3600000000000001,"15min":1.3600000000000001},"last":0.91700000000000004},{"interface":"front","average":{"1min":1.117,"5min":1.097,"15min":1.0940000000000001},"min":{"1min":0.81200000000000006,"5min":0.70399999999999996,"15min":0.70399999999999996},"max":{"1min":1.2929999999999999,"5min":1.2929999999999999,"15min":1.2929999999999999},"last":1.036}]},{"osd":6,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":1.0720000000000001,"5min":1.0409999999999999,"15min":1.0429999999999999},"min":{"1min":0.71699999999999997,"5min":0.64500000000000002,"15min":0.64500000000000002},"max":{"1min":1.395,"5min":1.395,"15min":1.395},"last":1.1639999999999999},{"interface":"front","average":{"1min":1.087,"5min":1.0580000000000001,"15min":1.0680000000000001},"min":{"1min":0.82699999999999996,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":1.3580000000000001,"5min":1.4830000000000001,"15min":1.4830000000000001},"last":0.95599999999999996}]},{"osd":7,"last update":"Fri Feb 23 00:33:29 2024","interfaces":[{"interface":"back","average":{"1min":1.177,"5min":1.169,"15min":1.1870000000000001},"min":{"1min":0.92000000000000004,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.3400000000000001,"5min":1.6859999999999999,"15min":1.6859999999999999},"last":1.2490000000000001},{"interface":"front","average":{"1min":1.1839999999999999,"5min":1.1839999999999999,"15min":1.1839999999999999},"min":{"1min":0.84199999999999997,"5min":0.77500000000000002,"15min":0.77500000000000002},"max":{"1min":1.427,"5min":1.6970000000000001,"15min":1.6970000000000001},"last":1.1020000000000001}]}]},{"osd":4,"up_from":26,"seq":111669149742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.68500000000000005,"5min":0.69899999999999995,"15min":0.70899999999999996},"min":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":0.87,"5min":1.032,"15min":1.032},"last":0.63800000000000001},{"interface":"front","average":{"1min":0.76600000000000001,"5min":0.75800000000000001,"15min":0.75600000000000001},"min":{"1min":0.59099999999999997,"5min":0.46200000000000002,"15min":0.46200000000000002},"max":{"1min":1.137,"5min":1.2609999999999999,"15min":1.2609999999999999},"last":1.012}]},{"osd":1,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.78300000000000003,"5min":0.84299999999999997,"15min":0.85599999999999998},"min":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"max":{"1min":1.0229999999999999,"5min":1.244,"15min":1.244},"last":0.76800000000000002},{"interface":"front","average":{"1min":0.85999999999999999,"5min":0.89500000000000002,"15min":0.90000000000000002},"min":{"1min":0.60899999999999999,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.0589999999999999,"5min":1.407,"15min":1.407},"last":0.83099999999999996}]},{"osd":2,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.79000000000000004,"5min":0.80000000000000004,"15min":0.80900000000000005},"min":{"1min":0.57299999999999995,"5min":0.44400000000000001,"15min":0.44400000000000001},"max":{"1min":0.93799999999999994,"5min":1.3520000000000001,"15min":1.3520000000000001},"last":0.66900000000000004},{"interface":"front","average":{"1min":0.80800000000000005,"5min":0.81299999999999994,"15min":0.81000000000000005},"min":{"1min":0.59899999999999998,"5min":0.51400000000000001,"15min":0.51400000000000001},"max":{"1min":1.0920000000000001,"5min":1.47,"15min":1.47},"last":0.91700000000000004}]},{"osd":3,"last update":"Fri Feb 23 00:33:15 2024","interfaces":[{"interface":"back","average":{"1min":0.94399999999999995,"5min":0.96699999999999997,"15min":0.96699999999999997},"min":{"1min":0.63500000000000001,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.1859999999999999,"5min":1.1859999999999999,"15min":1.1859999999999999},"last":0.87},{"interface":"front","average":{"1min":1.022,"5min":0.97099999999999997,"15min":0.94599999999999995},"min":{"1min":0.70299999999999996,"5min":0.65900000000000003,"15min":0.65900000000000003},"max":{"1min":1.2210000000000001,"5min":1.3029999999999999,"15min":1.3029999999999999},"last":1.0669999999999999}]},{"osd":5,"last update":"Fri Feb 23 00:33:30 2024","interfaces":[{"interface":"back","average":{"1min":1.036,"5min":1.032,"15min":1.018},"min":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"max":{"1min":1.196,"5min":2.0489999999999999,"15min":2.0489999999999999},"last":1.1479999999999999},{"interface":"front","average":{"1min":1.083,"5min":1.0600000000000001,"15min":1.056},"min":{"1min":0.92100000000000004,"5min":0.64200000000000002,"15min":0.64200000000000002},"max":{"1min":1.4450000000000001,"5min":1.4450000000000001,"15min":1.4450000000000001},"last":1.048}]},{"osd":6,"last update":"Fri Feb 23 00:33:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0700000000000001,"5min":1.0549999999999999,"15min":1.048},"min":{"1min":0.65800000000000003,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.4370000000000001,"5min":1.478,"15min":1.478},"last":0.97199999999999998},{"interface":"front","average":{"1min":1.095,"5min":1.093,"15min":1.097},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.4410000000000001,"5min":1.889,"15min":1.889},"last":1.204}]},{"osd":7,"last update":"Fri Feb 23 00:33:37 2024","interfaces":[{"interface":"back","average":{"1min":1.1870000000000001,"5min":1.1739999999999999,"15min":1.1639999999999999},"min":{"1min":0.91200000000000003,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.462,"5min":1.8109999999999999,"15min":1.8109999999999999},"last":1.1200000000000001},{"interface":"front","average":{"1min":1.1819999999999999,"5min":1.139,"15min":1.113},"min":{"1min":0.92600000000000005,"5min":0.77400000000000002,"15min":0.77400000000000002},"max":{"1min":1.327,"5min":1.661,"15min":1.661},"last":1.234}]}]},{"osd":3,"up_from":27,"seq":115964117038,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.84099999999999997,"5min":0.80600000000000005,"15min":0.80200000000000005},"min":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"max":{"1min":1.706,"5min":1.706,"15min":1.706},"last":0.72799999999999998},{"interface":"front","average":{"1min":0.86899999999999999,"5min":0.91300000000000003,"15min":0.94499999999999995},"min":{"1min":0.58799999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.286,"5min":1.286,"15min":1.286},"last":0.79700000000000004}]},{"osd":1,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.90600000000000003,"5min":0.78200000000000003,"15min":0.752},"min":{"1min":0.45800000000000002,"5min":0.37,"15min":0.37},"max":{"1min":2.0870000000000002,"5min":2.0870000000000002,"15min":2.0870000000000002},"last":1.0309999999999999},{"interface":"front","average":{"1min":0.80200000000000005,"5min":0.78400000000000003,"15min":0.76700000000000002},"min":{"1min":0.48399999999999999,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":1.042,"5min":1.282,"15min":1.282},"last":0.98899999999999999}]},{"osd":2,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.91000000000000003,"15min":0.90200000000000002},"min":{"1min":0.69899999999999995,"5min":0.51200000000000001,"15min":0.51200000000000001},"max":{"1min":1.278,"5min":1.278,"15min":1.278},"last":1.016},{"interface":"front","average":{"1min":1.0880000000000001,"5min":1.0329999999999999,"15min":1.022},"min":{"1min":0.872,"5min":0.60899999999999999,"15min":0.60899999999999999},"max":{"1min":1.631,"5min":1.631,"15min":1.631},"last":1.238}]},{"osd":4,"last update":"Fri Feb 23 00:33:19 2024","interfaces":[{"interface":"back","average":{"1min":1.0089999999999999,"5min":0.98199999999999998,"15min":0.98599999999999999},"min":{"1min":0.70299999999999996,"5min":0.64000000000000001,"15min":0.64000000000000001},"max":{"1min":1.25,"5min":1.25,"15min":1.25},"last":1.1120000000000001},{"interface":"front","average":{"1min":0.95499999999999996,"5min":0.92100000000000004,"15min":0.91800000000000004},"min":{"1min":0.71999999999999997,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.3169999999999999,"5min":1.3169999999999999,"15min":1.3169999999999999},"last":0.91100000000000003}]},{"osd":5,"last update":"Fri Feb 23 00:33:24 2024","interfaces":[{"interface":"back","average":{"1min":0.98799999999999999,"5min":1.0069999999999999,"15min":1.0149999999999999},"min":{"1min":0.58199999999999996,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":1.46,"5min":1.46,"15min":1.46},"last":1.3640000000000001},{"interface":"front","average":{"1min":1.02,"5min":0.95999999999999996,"15min":0.95399999999999996},"min":{"1min":0.57599999999999996,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.3839999999999999,"5min":1.3839999999999999,"15min":1.3839999999999999},"last":1.179}]},{"osd":6,"last update":"Fri Feb 23 00:33:24 2024","interfaces":[{"interface":"back","average":{"1min":1.115,"5min":1.105,"15min":1.101},"min":{"1min":0.84399999999999997,"5min":0.67800000000000005,"15min":0.67800000000000005},"max":{"1min":1.6779999999999999,"5min":1.716,"15min":1.716},"last":1.341},{"interface":"front","average":{"1min":1.1890000000000001,"5min":1.171,"15min":1.1699999999999999},"min":{"1min":0.81000000000000005,"5min":0.76100000000000001,"15min":0.76100000000000001},"max":{"1min":1.792,"5min":1.792,"15min":1.792},"last":1.2789999999999999}]},{"osd":7,"last update":"Fri Feb 23 00:33:29 2024","interfaces":[{"interface":"back","average":{"1min":1.173,"5min":1.175,"15min":1.175},"min":{"1min":0.86399999999999999,"5min":0.74199999999999999,"15min":0.74199999999999999},"max":{"1min":1.488,"5min":1.635,"15min":1.635},"last":1.4099999999999999},{"interface":"front","average":{"1min":1.1659999999999999,"5min":1.1319999999999999,"15min":1.1259999999999999},"min":{"1min":0.88800000000000001,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.5600000000000001,"5min":1.5600000000000001,"15min":1.5600000000000001},"last":1.3049999999999999}]}]},{"osd":6,"up_from":32,"seq":137438953517,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297484,"kb_used_data":388,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443572,"statfs":{"total":95990841344,"available":95686217728,"internally_reserved":0,"allocated":397312,"data_stored":156119,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.72799999999999998,"5min":0.72199999999999998,"15min":0.71499999999999997},"min":{"1min":0.52400000000000002,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":1.026,"5min":1.129,"15min":1.129},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.75600000000000001,"5min":0.79600000000000004,"15min":0.79200000000000004},"min":{"1min":0.56599999999999995,"5min":0.55600000000000005,"15min":0.55600000000000005},"max":{"1min":1.026,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.59799999999999998}]},{"osd":1,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.91100000000000003,"15min":0.93000000000000005},"min":{"1min":0.65000000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"max":{"1min":1.0629999999999999,"5min":1.2869999999999999,"15min":1.2869999999999999},"last":0.79600000000000004},{"interface":"front","average":{"1min":0.97799999999999998,"5min":0.94599999999999995,"15min":0.92600000000000005},"min":{"1min":0.80600000000000005,"5min":0.64100000000000001,"15min":0.64100000000000001},"max":{"1min":1.1160000000000001,"5min":1.8640000000000001,"15min":1.8640000000000001},"last":0.86599999999999999}]},{"osd":2,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.84899999999999998,"5min":0.876,"15min":0.87},"min":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"max":{"1min":1.2430000000000001,"5min":1.3799999999999999,"15min":1.3799999999999999},"last":0.64600000000000002},{"interface":"front","average":{"1min":0.80700000000000005,"5min":0.79700000000000004,"15min":0.78100000000000003},"min":{"1min":0.60699999999999998,"5min":0.503,"15min":0.503},"max":{"1min":1.0549999999999999,"5min":1.111,"15min":1.111},"last":0.57099999999999995}]},{"osd":3,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.92200000000000004,"5min":0.93799999999999994,"15min":0.93700000000000006},"min":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"max":{"1min":1.101,"5min":1.5229999999999999,"15min":1.5229999999999999},"last":0.69399999999999995},{"interface":"front","average":{"1min":1.0349999999999999,"5min":1.0449999999999999,"15min":1.0349999999999999},"min":{"1min":0.79000000000000004,"5min":0.66900000000000004,"15min":0.66900000000000004},"max":{"1min":1.252,"5min":2.052,"15min":2.052},"last":0.75600000000000001}]},{"osd":4,"last update":"Fri Feb 23 00:33:23 2024","interfaces":[{"interface":"back","average":{"1min":0.998,"5min":1.01,"15min":1.0169999999999999},"min":{"1min":0.65800000000000003,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.2030000000000001,"5min":1.4330000000000001,"15min":1.4330000000000001},"last":0.91700000000000004},{"interface":"front","average":{"1min":1.0189999999999999,"5min":1.036,"15min":1.0329999999999999},"min":{"1min":0.61099999999999999,"5min":0.61099999999999999,"15min":0.61099999999999999},"max":{"1min":1.2430000000000001,"5min":1.5289999999999999,"15min":1.5289999999999999},"last":0.53100000000000003}]},{"osd":5,"last update":"Fri Feb 23 00:33:31 2024","interfaces":[{"interface":"back","average":{"1min":1.119,"5min":1.1399999999999999,"15min":1.135},"min":{"1min":0.93700000000000006,"5min":0.873,"15min":0.873},"max":{"1min":1.3089999999999999,"5min":1.76,"15min":1.76},"last":1.0580000000000001},{"interface":"front","average":{"1min":1.175,"5min":1.1859999999999999,"15min":1.177},"min":{"1min":0.98399999999999999,"5min":0.85899999999999999,"15min":0.85899999999999999},"max":{"1min":1.409,"5min":1.4690000000000001,"15min":1.4690000000000001},"last":0.74399999999999999}]},{"osd":7,"last update":"Fri Feb 23 00:33:36 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.228,"15min":1.208},"min":{"1min":1.0289999999999999,"5min":0.89000000000000001,"15min":0.89000000000000001},"max":{"1min":1.429,"5min":2.3180000000000001,"15min":2.3180000000000001},"last":0.82599999999999996},{"interface":"front","average":{"1min":1.2230000000000001,"5min":1.232,"15min":1.214},"min":{"1min":1.03,"5min":0.88300000000000001,"15min":0.88300000000000001},"max":{"1min":1.4930000000000001,"5min":1.885,"15min":1.885},"last":1.105}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-02-23T00:33:54.926 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-23T00:33:54.926 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-23T00:33:54.926 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-23T00:33:54.926 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph health --format=json 2024-02-23T00:33:55.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:54 smithi142 bash[20802]: cluster 2024-02-23T00:33:53.168187+0000 mgr.smithi046.lplrtl (mgr.14184) 202 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:55.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:54 smithi142 bash[20802]: audit 2024-02-23T00:33:54.280976+0000 mgr.smithi046.lplrtl (mgr.14184) 203 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:33:55.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:55 smithi046 bash[16275]: cluster 2024-02-23T00:33:55.168667+0000 mgr.smithi046.lplrtl (mgr.14184) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:56.007 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:55 smithi142 bash[20802]: cluster 2024-02-23T00:33:55.168667+0000 mgr.smithi046.lplrtl (mgr.14184) 204 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:58.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:33:58 smithi046 bash[16275]: cluster 2024-02-23T00:33:57.169242+0000 mgr.smithi046.lplrtl (mgr.14184) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:58.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:33:58 smithi142 bash[20802]: cluster 2024-02-23T00:33:57.169242+0000 mgr.smithi046.lplrtl (mgr.14184) 205 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:33:59.779 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring config /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/mon.smithi046/config 2024-02-23T00:34:00.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:00 smithi046 bash[16275]: cluster 2024-02-23T00:33:59.169809+0000 mgr.smithi046.lplrtl (mgr.14184) 206 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:00.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:00 smithi142 bash[20802]: cluster 2024-02-23T00:33:59.169809+0000 mgr.smithi046.lplrtl (mgr.14184) 206 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:02.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:02 smithi142 bash[20802]: cluster 2024-02-23T00:34:01.170494+0000 mgr.smithi046.lplrtl (mgr.14184) 207 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:02.700 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:34:02.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:02 smithi046 bash[16275]: cluster 2024-02-23T00:34:01.170494+0000 mgr.smithi046.lplrtl (mgr.14184) 207 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:03.275 INFO:teuthology.orchestra.run.smithi046.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-23T00:34:03.275 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-23T00:34:03.276 INFO:tasks.cephadm:Setup complete, yielding 2024-02-23T00:34:03.276 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-23T00:34:03.287 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:34:03.287 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch status' 2024-02-23T00:34:03.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:03 smithi142 bash[20802]: audit 2024-02-23T00:34:02.698857+0000 mon.smithi046 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.46:0/1044882919' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-23T00:34:03.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:03 smithi046 bash[16275]: audit 2024-02-23T00:34:02.698857+0000 mon.smithi046 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.46:0/1044882919' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-23T00:34:04.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:04 smithi142 bash[20802]: cluster 2024-02-23T00:34:03.171287+0000 mgr.smithi046.lplrtl (mgr.14184) 208 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:04.589 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:04 smithi046 bash[16275]: cluster 2024-02-23T00:34:03.171287+0000 mgr.smithi046.lplrtl (mgr.14184) 208 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:06.341 INFO:teuthology.orchestra.run.smithi046.stdout:Backend: cephadm 2024-02-23T00:34:06.342 INFO:teuthology.orchestra.run.smithi046.stdout:Available: Yes 2024-02-23T00:34:06.342 INFO:teuthology.orchestra.run.smithi046.stdout:Paused: No 2024-02-23T00:34:06.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:06 smithi142 bash[20802]: cluster 2024-02-23T00:34:05.171924+0000 mgr.smithi046.lplrtl (mgr.14184) 209 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:06.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:06 smithi046 bash[16275]: cluster 2024-02-23T00:34:05.171924+0000 mgr.smithi046.lplrtl (mgr.14184) 209 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:06.943 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-23T00:34:07.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:07 smithi046 bash[16275]: audit 2024-02-23T00:34:06.339343+0000 mgr.smithi046.lplrtl (mgr.14184) 210 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:07.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:07 smithi142 bash[20802]: audit 2024-02-23T00:34:06.339343+0000 mgr.smithi046.lplrtl (mgr.14184) 210 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:08.734 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:08 smithi046 bash[16275]: cluster 2024-02-23T00:34:07.172435+0000 mgr.smithi046.lplrtl (mgr.14184) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:08.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:08 smithi142 bash[20802]: cluster 2024-02-23T00:34:07.172435+0000 mgr.smithi046.lplrtl (mgr.14184) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:10.022 INFO:teuthology.orchestra.run.smithi046.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-23T00:34:10.022 INFO:teuthology.orchestra.run.smithi046.stdout:alertmanager.smithi046 smithi046 *:9093,9094 running (3m) 17s ago 6m 14.5M - 0.23.0 ba2b418f427c 3e13f9a08273 2024-02-23T00:34:10.022 INFO:teuthology.orchestra.run.smithi046.stdout:crash.smithi046 smithi046 running (6m) 17s ago 6m 7587k - 16.2.14-550-geb66ed92 7403d1862307 6b9f9c0b908f 2024-02-23T00:34:10.022 INFO:teuthology.orchestra.run.smithi046.stdout:crash.smithi142 smithi142 running (5m) 17s ago 5m 9507k - 16.2.14-550-geb66ed92 7403d1862307 f8121362813b 2024-02-23T00:34:10.022 INFO:teuthology.orchestra.run.smithi046.stdout:grafana.smithi046 smithi046 *:3000 running (3m) 17s ago 5m 43.3M - 8.3.5 dad864ee21e9 1dd606525dd0 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:mgr.smithi046.lplrtl smithi046 *:9283 running (7m) 17s ago 7m 429M - 16.2.14-550-geb66ed92 7403d1862307 0ed3656a4afb 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:mgr.smithi142.hrzezs smithi142 *:8443,9283 running (5m) 17s ago 5m 377M - 16.2.14-550-geb66ed92 7403d1862307 0da6555d2d4c 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:mon.smithi046 smithi046 running (7m) 17s ago 7m 59.9M 2048M 16.2.14-550-geb66ed92 7403d1862307 456b34ccd253 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:mon.smithi142 smithi142 running (5m) 17s ago 5m 57.9M 2048M 16.2.14-550-geb66ed92 7403d1862307 44ac3b4a5a18 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:node-exporter.smithi046 smithi046 *:9100 running (5m) 17s ago 5m 13.1M - 1.3.1 1dbe0e931976 d33bf13882a2 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:node-exporter.smithi142 smithi142 *:9100 running (5m) 17s ago 5m 11.3M - 1.3.1 1dbe0e931976 5d321c28baf2 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.0 smithi142 running (4m) 17s ago 4m 34.9M 3785M 16.2.14-550-geb66ed92 7403d1862307 e906edbac801 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.1 smithi046 running (4m) 17s ago 4m 36.5M 3530M 16.2.14-550-geb66ed92 7403d1862307 af455537f813 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.2 smithi142 running (4m) 17s ago 4m 34.0M 3785M 16.2.14-550-geb66ed92 7403d1862307 69b9473781ba 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.3 smithi046 running (4m) 17s ago 4m 34.4M 3530M 16.2.14-550-geb66ed92 7403d1862307 9a48e8e636c2 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.4 smithi142 running (4m) 17s ago 4m 34.7M 3785M 16.2.14-550-geb66ed92 7403d1862307 df9791d1d5f0 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.5 smithi046 running (3m) 17s ago 4m 34.3M 3530M 16.2.14-550-geb66ed92 7403d1862307 b497c0dc3119 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.6 smithi142 running (3m) 17s ago 4m 34.5M 3785M 16.2.14-550-geb66ed92 7403d1862307 4678328c7ab9 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:osd.7 smithi046 running (3m) 17s ago 3m 33.9M 3530M 16.2.14-550-geb66ed92 7403d1862307 8827b50e93ca 2024-02-23T00:34:10.023 INFO:teuthology.orchestra.run.smithi046.stdout:prometheus.smithi142 smithi142 *:9095 running (4m) 17s ago 5m 54.9M - 2.33.4 514e6a882f6e c4dc63b8a61a 2024-02-23T00:34:10.484 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:10 smithi046 bash[16275]: cluster 2024-02-23T00:34:09.173063+0000 mgr.smithi046.lplrtl (mgr.14184) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:10.617 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-23T00:34:10.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:10 smithi142 bash[20802]: cluster 2024-02-23T00:34:09.173063+0000 mgr.smithi046.lplrtl (mgr.14184) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:11.650 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:11 smithi046 bash[16275]: audit 2024-02-23T00:34:10.006797+0000 mgr.smithi046.lplrtl (mgr.14184) 213 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:11.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:11 smithi142 bash[20802]: audit 2024-02-23T00:34:10.006797+0000 mgr.smithi046.lplrtl (mgr.14184) 213 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:12.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:12 smithi046 bash[16275]: cluster 2024-02-23T00:34:11.173638+0000 mgr.smithi046.lplrtl (mgr.14184) 214 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:12.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:12 smithi142 bash[20802]: cluster 2024-02-23T00:34:11.173638+0000 mgr.smithi046.lplrtl (mgr.14184) 214 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:13.609 INFO:teuthology.orchestra.run.smithi046.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:alertmanager ?:9093,9094 1/1 20s ago 6m count:1 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:crash 2/2 21s ago 6m * 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:grafana ?:3000 1/1 20s ago 6m count:1 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:mgr 2/2 21s ago 7m count:2 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:mon 2/2 21s ago 5m smithi046:172.21.15.46=smithi046;smithi142:172.21.15.142=smithi142;count:2 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:node-exporter ?:9100 2/2 21s ago 6m * 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:osd.all-available-devices 8 21s ago 4m * 2024-02-23T00:34:13.610 INFO:teuthology.orchestra.run.smithi046.stdout:prometheus ?:9095 1/1 21s ago 6m count:1 2024-02-23T00:34:14.184 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-23T00:34:14.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:14 smithi046 bash[16275]: cluster 2024-02-23T00:34:13.174234+0000 mgr.smithi046.lplrtl (mgr.14184) 215 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:14.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:14 smithi142 bash[20802]: cluster 2024-02-23T00:34:13.174234+0000 mgr.smithi046.lplrtl (mgr.14184) 215 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:15.461 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:15 smithi046 bash[16275]: audit 2024-02-23T00:34:13.600459+0000 mgr.smithi046.lplrtl (mgr.14184) 216 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:15.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:15 smithi142 bash[20802]: audit 2024-02-23T00:34:13.600459+0000 mgr.smithi046.lplrtl (mgr.14184) 216 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:16.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:16 smithi046 bash[16275]: cluster 2024-02-23T00:34:15.174976+0000 mgr.smithi046.lplrtl (mgr.14184) 217 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:16.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:16 smithi142 bash[20802]: cluster 2024-02-23T00:34:15.174976+0000 mgr.smithi046.lplrtl (mgr.14184) 217 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:17.159 INFO:teuthology.orchestra.run.smithi046.stdout:HOST ADDR LABELS STATUS 2024-02-23T00:34:17.160 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 172.21.15.46 2024-02-23T00:34:17.160 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 172.21.15.142 2024-02-23T00:34:17.160 INFO:teuthology.orchestra.run.smithi046.stdout:2 hosts in cluster 2024-02-23T00:34:17.938 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-23T00:34:18.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:18 smithi046 bash[16275]: audit 2024-02-23T00:34:17.156222+0000 mgr.smithi046.lplrtl (mgr.14184) 218 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:18.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:18 smithi046 bash[16275]: cluster 2024-02-23T00:34:17.175438+0000 mgr.smithi046.lplrtl (mgr.14184) 219 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:18.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:18 smithi142 bash[20802]: audit 2024-02-23T00:34:17.156222+0000 mgr.smithi046.lplrtl (mgr.14184) 218 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:18.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:18 smithi142 bash[20802]: cluster 2024-02-23T00:34:17.175438+0000 mgr.smithi046.lplrtl (mgr.14184) 219 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:20.575 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:20 smithi046 bash[16275]: cluster 2024-02-23T00:34:19.176025+0000 mgr.smithi046.lplrtl (mgr.14184) 220 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:20.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:20 smithi142 bash[20802]: cluster 2024-02-23T00:34:19.176025+0000 mgr.smithi046.lplrtl (mgr.14184) 220 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme0n1 ssd _PHMB7512009A480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme1n1 ssd _1b4e35a49f8d0203 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme2n1 ssd _c2bbcf10e321d07b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme3n1 ssd _54a4b8522a363f06 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.080 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme4n1 ssd _44e3e8d4d167b896 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.081 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme0n1 ssd _CVFT6303009Y400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-23T00:34:21.081 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme1n1 ssd _e85805471aeeb6c8 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.081 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme2n1 ssd _337e52df0876d064 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.081 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme3n1 ssd _c63d489e74cfc280 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.081 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme4n1 ssd _a09eff3bd47b11c7 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:21.663 INFO:teuthology.run_tasks:Running task vip... 2024-02-23T00:34:21.675 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-23T00:34:21.675 INFO:tasks.vip:peername 172.21.15.46 2024-02-23T00:34:21.678 INFO:tasks.vip:172.21.15.46 in 172.21.0.0/20, pos 3885 2024-02-23T00:34:21.682 INFO:tasks.vip:smithi046.front.sepia.ceph.com static 10.0.15.46, vnet 10.0.0.0/16 2024-02-23T00:34:21.683 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-23T00:34:21.683 DEBUG:teuthology.orchestra.run.smithi046:> sudo ip route ls 2024-02-23T00:34:21.695 INFO:teuthology.orchestra.run.smithi046.stdout:default via 172.21.15.254 dev ens1f0 2024-02-23T00:34:21.695 INFO:teuthology.orchestra.run.smithi046.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-23T00:34:21.695 INFO:teuthology.orchestra.run.smithi046.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.46 2024-02-23T00:34:21.696 INFO:tasks.vip:Configuring 10.0.15.46 on smithi046.front.sepia.ceph.com iface ens1f0... 2024-02-23T00:34:21.696 DEBUG:teuthology.orchestra.run.smithi046:> sudo ip addr add 10.0.15.46/16 dev ens1f0 2024-02-23T00:34:21.755 INFO:tasks.vip:peername 172.21.15.142 2024-02-23T00:34:21.758 INFO:tasks.vip:172.21.15.142 in 172.21.0.0/20, pos 3981 2024-02-23T00:34:21.762 INFO:tasks.vip:smithi142.front.sepia.ceph.com static 10.0.15.142, vnet 10.0.0.0/16 2024-02-23T00:34:21.762 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip route ls 2024-02-23T00:34:21.777 INFO:teuthology.orchestra.run.smithi142.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-23T00:34:21.778 INFO:teuthology.orchestra.run.smithi142.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.142 metric 100 2024-02-23T00:34:21.778 INFO:teuthology.orchestra.run.smithi142.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-23T00:34:21.778 INFO:teuthology.orchestra.run.smithi142.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.142 2024-02-23T00:34:21.778 INFO:teuthology.orchestra.run.smithi142.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.142 metric 100 2024-02-23T00:34:21.779 INFO:tasks.vip:Configuring 10.0.15.142 on smithi142.front.sepia.ceph.com iface enp3s0f1... 2024-02-23T00:34:21.779 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr add 10.0.15.142/16 dev enp3s0f1 2024-02-23T00:34:21.836 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-23T00:34:21.847 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:34:21.847 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-23T00:34:22.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:22 smithi046 bash[16275]: audit 2024-02-23T00:34:21.072909+0000 mgr.smithi046.lplrtl (mgr.14184) 221 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:22.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:22 smithi046 bash[16275]: cluster 2024-02-23T00:34:21.176635+0000 mgr.smithi046.lplrtl (mgr.14184) 222 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:22.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:22 smithi142 bash[20802]: audit 2024-02-23T00:34:21.072909+0000 mgr.smithi046.lplrtl (mgr.14184) 221 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:22.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:22 smithi142 bash[20802]: cluster 2024-02-23T00:34:21.176635+0000 mgr.smithi046.lplrtl (mgr.14184) 222 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:24.663 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:24 smithi046 bash[16275]: cluster 2024-02-23T00:34:23.177263+0000 mgr.smithi046.lplrtl (mgr.14184) 223 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:24.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:24 smithi142 bash[20802]: cluster 2024-02-23T00:34:23.177263+0000 mgr.smithi046.lplrtl (mgr.14184) 223 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme0n1 ssd _PHMB7512009A480DGN 447G 3m ago Has a FileSystem, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme1n1 ssd _1b4e35a49f8d0203 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme2n1 ssd _c2bbcf10e321d07b 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme3n1 ssd _54a4b8522a363f06 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi046 /dev/nvme4n1 ssd _44e3e8d4d167b896 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme0n1 ssd _CVFT6303009Y400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme1n1 ssd _e85805471aeeb6c8 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme2n1 ssd _337e52df0876d064 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme3n1 ssd _c63d489e74cfc280 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.110 INFO:teuthology.orchestra.run.smithi046.stdout:smithi142 /dev/nvme4n1 ssd _a09eff3bd47b11c7 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-23T00:34:25.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:25 smithi046 bash[16275]: audit 2024-02-23T00:34:25.126886+0000 mon.smithi046 (mon.0) 603 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:34:25.729 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-23T00:34:25.739 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:34:25.739 DEBUG:teuthology.orchestra.run.smithi046:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-23T00:34:25.753 INFO:teuthology.orchestra.run.smithi046.stderr:+ systemctl stop nfs-server 2024-02-23T00:34:25.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:25 smithi142 bash[20802]: audit 2024-02-23T00:34:25.126886+0000 mon.smithi046 (mon.0) 603 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:34:25.777 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi142.front.sepia.ceph.com 2024-02-23T00:34:25.777 DEBUG:teuthology.orchestra.run.smithi142:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-23T00:34:25.793 INFO:teuthology.orchestra.run.smithi142.stderr:+ systemctl stop nfs-server 2024-02-23T00:34:25.815 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-23T00:34:25.825 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:34:25.826 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-23T00:34:26.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:26 smithi046 bash[16275]: audit 2024-02-23T00:34:25.099088+0000 mgr.smithi046.lplrtl (mgr.14184) 224 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:26.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:26 smithi046 bash[16275]: cluster 2024-02-23T00:34:25.177705+0000 mgr.smithi046.lplrtl (mgr.14184) 225 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:26.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:26 smithi142 bash[20802]: audit 2024-02-23T00:34:25.099088+0000 mgr.smithi046.lplrtl (mgr.14184) 224 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:26.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:26 smithi142 bash[20802]: cluster 2024-02-23T00:34:25.177705+0000 mgr.smithi046.lplrtl (mgr.14184) 225 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:28.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:28 smithi046 bash[16275]: cluster 2024-02-23T00:34:27.178257+0000 mgr.smithi046.lplrtl (mgr.14184) 226 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:28.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:28 smithi142 bash[20802]: cluster 2024-02-23T00:34:27.178257+0000 mgr.smithi046.lplrtl (mgr.14184) 226 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:28.918 INFO:teuthology.orchestra.run.smithi046.stdout:Scheduled rgw.foorgw update... 2024-02-23T00:34:29.531 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.46/16' 2024-02-23T00:34:30.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:29 smithi046 bash[16275]: audit 2024-02-23T00:34:28.905772+0000 mgr.smithi046.lplrtl (mgr.14184) 227 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:30.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:29 smithi046 bash[16275]: cephadm 2024-02-23T00:34:28.908813+0000 mgr.smithi046.lplrtl (mgr.14184) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-23T00:34:30.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:29 smithi046 bash[16275]: audit 2024-02-23T00:34:28.915484+0000 mon.smithi046 (mon.0) 604 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:30.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:29 smithi046 bash[16275]: cluster 2024-02-23T00:34:29.178915+0000 mgr.smithi046.lplrtl (mgr.14184) 229 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:30.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:29 smithi142 bash[20802]: audit 2024-02-23T00:34:28.905772+0000 mgr.smithi046.lplrtl (mgr.14184) 227 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:29 smithi142 bash[20802]: cephadm 2024-02-23T00:34:28.908813+0000 mgr.smithi046.lplrtl (mgr.14184) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-23T00:34:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:29 smithi142 bash[20802]: audit 2024-02-23T00:34:28.915484+0000 mon.smithi046 (mon.0) 604 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:29 smithi142 bash[20802]: cluster 2024-02-23T00:34:29.178915+0000 mgr.smithi046.lplrtl (mgr.14184) 229 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:32.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:31 smithi046 bash[16275]: audit 2024-02-23T00:34:30.923707+0000 mon.smithi046 (mon.0) 605 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:32.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:31 smithi046 bash[16275]: cluster 2024-02-23T00:34:31.179673+0000 mgr.smithi046.lplrtl (mgr.14184) 230 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:32.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:31 smithi046 bash[16275]: audit 2024-02-23T00:34:31.305054+0000 mon.smithi046 (mon.0) 606 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:32.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:31 smithi142 bash[20802]: audit 2024-02-23T00:34:30.923707+0000 mon.smithi046 (mon.0) 605 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:32.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:31 smithi142 bash[20802]: cluster 2024-02-23T00:34:31.179673+0000 mgr.smithi046.lplrtl (mgr.14184) 230 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:32.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:31 smithi142 bash[20802]: audit 2024-02-23T00:34:31.305054+0000 mon.smithi046 (mon.0) 606 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:33.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:33 smithi142 bash[20802]: audit 2024-02-23T00:34:32.728845+0000 mon.smithi046 (mon.0) 607 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-23T00:34:33.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:33 smithi046 bash[16275]: audit 2024-02-23T00:34:32.728845+0000 mon.smithi046 (mon.0) 607 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-23T00:34:34.305 INFO:teuthology.orchestra.run.smithi046.stdout:NFS Cluster Created Successfully 2024-02-23T00:34:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:34 smithi046 bash[16275]: audit 2024-02-23T00:34:32.725807+0000 mgr.smithi046.lplrtl (mgr.14184) 231 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.46/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:34 smithi046 bash[16275]: cluster 2024-02-23T00:34:33.180362+0000 mgr.smithi046.lplrtl (mgr.14184) 232 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:34 smithi046 bash[16275]: audit 2024-02-23T00:34:33.244501+0000 mon.smithi046 (mon.0) 608 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-23T00:34:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:34 smithi046 bash[16275]: cluster 2024-02-23T00:34:33.244670+0000 mon.smithi046 (mon.0) 609 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-23T00:34:34.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:34 smithi046 bash[16275]: audit 2024-02-23T00:34:33.252070+0000 mon.smithi046 (mon.0) 610 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-23T00:34:34.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:34 smithi142 bash[20802]: audit 2024-02-23T00:34:32.725807+0000 mgr.smithi046.lplrtl (mgr.14184) 231 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.46/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:34:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:34 smithi142 bash[20802]: cluster 2024-02-23T00:34:33.180362+0000 mgr.smithi046.lplrtl (mgr.14184) 232 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:34 smithi142 bash[20802]: audit 2024-02-23T00:34:33.244501+0000 mon.smithi046 (mon.0) 608 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-23T00:34:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:34 smithi142 bash[20802]: cluster 2024-02-23T00:34:33.244670+0000 mon.smithi046 (mon.0) 609 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-23T00:34:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:34 smithi142 bash[20802]: audit 2024-02-23T00:34:33.252070+0000 mon.smithi046 (mon.0) 610 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-23T00:34:34.969 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-23T00:34:34.980 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:34:34.981 DEBUG:teuthology.orchestra.run.smithi046:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-23T00:34:34.996 INFO:teuthology.orchestra.run.smithi046.stderr:+ dnf install -y python3-boto3 2024-02-23T00:34:34.996 INFO:teuthology.orchestra.run.smithi046.stderr:bash: dnf: command not found 2024-02-23T00:34:34.997 INFO:teuthology.orchestra.run.smithi046.stderr:+ apt install -y python3-boto3 2024-02-23T00:34:35.003 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:34:35.003 INFO:teuthology.orchestra.run.smithi046.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-23T00:34:35.003 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T00:34:35.073 INFO:teuthology.orchestra.run.smithi046.stdout:Reading package lists... 2024-02-23T00:34:35.390 INFO:teuthology.orchestra.run.smithi046.stdout:Building dependency tree... 2024-02-23T00:34:35.391 INFO:teuthology.orchestra.run.smithi046.stdout:Reading state information... 2024-02-23T00:34:35.622 INFO:teuthology.orchestra.run.smithi046.stdout:The following packages were automatically installed and are no longer required: 2024-02-23T00:34:35.622 INFO:teuthology.orchestra.run.smithi046.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-02-23T00:34:35.622 INFO:teuthology.orchestra.run.smithi046.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-02-23T00:34:35.622 INFO:teuthology.orchestra.run.smithi046.stdout: linux-modules-extra-4.15.0-194-generic 2024-02-23T00:34:35.622 INFO:teuthology.orchestra.run.smithi046.stdout:Use 'sudo apt autoremove' to remove them. 2024-02-23T00:34:35.623 INFO:teuthology.orchestra.run.smithi046.stdout:The following additional packages will be installed: 2024-02-23T00:34:35.624 INFO:teuthology.orchestra.run.smithi046.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-dateutil 2024-02-23T00:34:35.624 INFO:teuthology.orchestra.run.smithi046.stdout: python3-docutils python3-jmespath python3-olefile python3-pil 2024-02-23T00:34:35.624 INFO:teuthology.orchestra.run.smithi046.stdout: python3-pygments python3-roman python3-s3transfer sgml-base xml-core 2024-02-23T00:34:35.626 INFO:teuthology.orchestra.run.smithi046.stdout:Suggested packages: 2024-02-23T00:34:35.626 INFO:teuthology.orchestra.run.smithi046.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-23T00:34:35.626 INFO:teuthology.orchestra.run.smithi046.stdout: texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg 2024-02-23T00:34:35.627 INFO:teuthology.orchestra.run.smithi046.stdout: sgml-base-doc debhelper 2024-02-23T00:34:35.667 INFO:teuthology.orchestra.run.smithi046.stdout:The following NEW packages will be installed: 2024-02-23T00:34:35.669 INFO:teuthology.orchestra.run.smithi046.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-23T00:34:35.669 INFO:teuthology.orchestra.run.smithi046.stdout: python3-dateutil python3-docutils python3-jmespath python3-olefile 2024-02-23T00:34:35.669 INFO:teuthology.orchestra.run.smithi046.stdout: python3-pil python3-pygments python3-roman python3-s3transfer sgml-base 2024-02-23T00:34:35.669 INFO:teuthology.orchestra.run.smithi046.stdout: xml-core 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: audit 2024-02-23T00:34:34.248722+0000 mon.smithi046 (mon.0) 611 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: cluster 2024-02-23T00:34:34.249338+0000 mon.smithi046 (mon.0) 612 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: cephadm 2024-02-23T00:34:34.292679+0000 mgr.smithi046.lplrtl (mgr.14184) 233 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: audit 2024-02-23T00:34:34.296641+0000 mon.smithi046 (mon.0) 613 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: cephadm 2024-02-23T00:34:34.298638+0000 mgr.smithi046.lplrtl (mgr.14184) 234 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-23T00:34:35.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:35 smithi046 bash[16275]: audit 2024-02-23T00:34:34.302508+0000 mon.smithi046 (mon.0) 614 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:35.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: audit 2024-02-23T00:34:34.248722+0000 mon.smithi046 (mon.0) 611 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-23T00:34:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: cluster 2024-02-23T00:34:34.249338+0000 mon.smithi046 (mon.0) 612 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-23T00:34:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: cephadm 2024-02-23T00:34:34.292679+0000 mgr.smithi046.lplrtl (mgr.14184) 233 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-23T00:34:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: audit 2024-02-23T00:34:34.296641+0000 mon.smithi046 (mon.0) 613 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: cephadm 2024-02-23T00:34:34.298638+0000 mgr.smithi046.lplrtl (mgr.14184) 234 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-23T00:34:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:35 smithi142 bash[20802]: audit 2024-02-23T00:34:34.302508+0000 mon.smithi046 (mon.0) 614 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:35.859 INFO:teuthology.orchestra.run.smithi046.stdout:0 upgraded, 15 newly installed, 0 to remove and 146 not upgraded. 2024-02-23T00:34:35.859 INFO:teuthology.orchestra.run.smithi046.stdout:Need to get 4,955 kB of archives. 2024-02-23T00:34:35.859 INFO:teuthology.orchestra.run.smithi046.stdout:After this operation, 55.1 MB of additional disk space will be used. 2024-02-23T00:34:35.859 INFO:teuthology.orchestra.run.smithi046.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 2024-02-23T00:34:35.941 INFO:teuthology.orchestra.run.smithi046.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 2024-02-23T00:34:35.986 INFO:teuthology.orchestra.run.smithi046.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 2024-02-23T00:34:36.212 INFO:teuthology.orchestra.run.smithi046.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 2024-02-23T00:34:36.219 INFO:teuthology.orchestra.run.smithi046.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 2024-02-23T00:34:36.224 INFO:teuthology.orchestra.run.smithi046.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] 2024-02-23T00:34:36.250 INFO:teuthology.orchestra.run.smithi046.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] 2024-02-23T00:34:36.253 INFO:teuthology.orchestra.run.smithi046.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] 2024-02-23T00:34:36.356 INFO:teuthology.orchestra.run.smithi046.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-jmespath all 0.9.3-1ubuntu1.1 [18.8 kB] 2024-02-23T00:34:36.359 INFO:teuthology.orchestra.run.smithi046.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.18.04.1 [3,255 kB] 2024-02-23T00:34:36.568 INFO:teuthology.orchestra.run.smithi046.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python3-s3transfer all 0.3.3-1ubuntu0.18.04.1 [46.7 kB] 2024-02-23T00:34:36.733 INFO:teuthology.orchestra.run.smithi046.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-boto3 all 1.4.2-1 [61.8 kB] 2024-02-23T00:34:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:36 smithi046 bash[16275]: cluster 2024-02-23T00:34:35.181082+0000 mgr.smithi046.lplrtl (mgr.14184) 235 : cluster [DBG] pgmap v210: 33 pgs: 2 creating+peering, 21 active+clean, 10 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:36 smithi046 bash[16275]: cluster 2024-02-23T00:34:35.259381+0000 mon.smithi046 (mon.0) 615 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-23T00:34:36.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:36 smithi046 bash[16275]: cluster 2024-02-23T00:34:35.317652+0000 mon.smithi046 (mon.0) 616 : cluster [DBG] mgrmap e19: smithi046.lplrtl(active, since 6m), standbys: smithi142.hrzezs 2024-02-23T00:34:36.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:36 smithi142 bash[20802]: cluster 2024-02-23T00:34:35.181082+0000 mgr.smithi046.lplrtl (mgr.14184) 235 : cluster [DBG] pgmap v210: 33 pgs: 2 creating+peering, 21 active+clean, 10 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:36 smithi142 bash[20802]: cluster 2024-02-23T00:34:35.259381+0000 mon.smithi046 (mon.0) 615 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-23T00:34:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:36 smithi142 bash[20802]: cluster 2024-02-23T00:34:35.317652+0000 mon.smithi046 (mon.0) 616 : cluster [DBG] mgrmap e19: smithi046.lplrtl(active, since 6m), standbys: smithi142.hrzezs 2024-02-23T00:34:37.008 INFO:teuthology.orchestra.run.smithi046.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] 2024-02-23T00:34:37.039 INFO:teuthology.orchestra.run.smithi046.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.8 [331 kB] 2024-02-23T00:34:37.246 INFO:teuthology.orchestra.run.smithi046.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pygments all 2.2.0+dfsg-1ubuntu0.2 [574 kB] 2024-02-23T00:34:37.662 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: unable to initialize frontend: Dialog 2024-02-23T00:34:37.662 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-23T00:34:37.662 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: falling back to frontend: Readline 2024-02-23T00:34:37.683 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: unable to initialize frontend: Readline 2024-02-23T00:34:37.683 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-23T00:34:37.683 INFO:teuthology.orchestra.run.smithi046.stderr:debconf: falling back to frontend: Teletype 2024-02-23T00:34:37.688 INFO:teuthology.orchestra.run.smithi046.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-23T00:34:37.760 INFO:teuthology.orchestra.run.smithi046.stdout:Fetched 4,955 kB in 2s (2,966 kB/s) 2024-02-23T00:34:38.216 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package sgml-base. 2024-02-23T00:34:38.280 INFO:teuthology.orchestra.run.smithi046.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 172445 files and directories currently installed.) 2024-02-23T00:34:38.286 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../00-sgml-base_1.29_all.deb ... 2024-02-23T00:34:38.355 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking sgml-base (1.29) ... 2024-02-23T00:34:38.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:38 smithi046 bash[16275]: cluster 2024-02-23T00:34:37.181741+0000 mgr.smithi046.lplrtl (mgr.14184) 236 : cluster [DBG] pgmap v212: 33 pgs: 2 creating+peering, 30 active+clean, 1 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:38.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:38 smithi142 bash[20802]: cluster 2024-02-23T00:34:37.181741+0000 mgr.smithi046.lplrtl (mgr.14184) 236 : cluster [DBG] pgmap v212: 33 pgs: 2 creating+peering, 30 active+clean, 1 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:39.684 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package xml-core. 2024-02-23T00:34:39.699 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../01-xml-core_0.18_all.deb ... 2024-02-23T00:34:39.746 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking xml-core (0.18) ... 2024-02-23T00:34:40.265 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package docutils-common. 2024-02-23T00:34:40.281 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../02-docutils-common_0.14+dfsg-3_all.deb ... 2024-02-23T00:34:40.324 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking docutils-common (0.14+dfsg-3) ... 2024-02-23T00:34:40.554 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:40 smithi046 bash[16275]: cluster 2024-02-23T00:34:39.182419+0000 mgr.smithi046.lplrtl (mgr.14184) 237 : cluster [DBG] pgmap v213: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:40.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:40 smithi142 bash[20802]: cluster 2024-02-23T00:34:39.182419+0000 mgr.smithi046.lplrtl (mgr.14184) 237 : cluster [DBG] pgmap v213: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:40.897 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-23T00:34:40.914 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../03-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-02-23T00:34:40.997 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-02-23T00:34:41.217 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package libpaper-utils. 2024-02-23T00:34:41.231 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../04-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 2024-02-23T00:34:41.275 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-02-23T00:34:41.570 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-dateutil. 2024-02-23T00:34:41.587 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../05-python3-dateutil_2.6.1-1_all.deb ... 2024-02-23T00:34:41.647 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-dateutil (2.6.1-1) ... 2024-02-23T00:34:42.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:42 smithi046 bash[16275]: cluster 2024-02-23T00:34:41.183279+0000 mgr.smithi046.lplrtl (mgr.14184) 238 : cluster [DBG] pgmap v214: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:42.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:42 smithi046 bash[16275]: audit 2024-02-23T00:34:41.191438+0000 mon.smithi046 (mon.0) 617 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:42.507 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:42 smithi142 bash[20802]: cluster 2024-02-23T00:34:41.183279+0000 mgr.smithi046.lplrtl (mgr.14184) 238 : cluster [DBG] pgmap v214: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:42.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:42 smithi142 bash[20802]: audit 2024-02-23T00:34:41.191438+0000 mon.smithi046 (mon.0) 617 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:42.560 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-roman. 2024-02-23T00:34:42.575 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../06-python3-roman_2.0.0-3_all.deb ... 2024-02-23T00:34:42.609 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-roman (2.0.0-3) ... 2024-02-23T00:34:42.921 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-docutils. 2024-02-23T00:34:42.937 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../07-python3-docutils_0.14+dfsg-3_all.deb ... 2024-02-23T00:34:42.985 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-docutils (0.14+dfsg-3) ... 2024-02-23T00:34:43.369 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-jmespath. 2024-02-23T00:34:43.384 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../08-python3-jmespath_0.9.3-1ubuntu1.1_all.deb ... 2024-02-23T00:34:43.427 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-02-23T00:34:43.747 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-botocore. 2024-02-23T00:34:43.758 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../09-python3-botocore_1.16.19+repack-1ubuntu0.18.04.1_all.deb ... 2024-02-23T00:34:43.797 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-02-23T00:34:43.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.730022+0000 mon.smithi046 (mon.0) 618 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:43.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.732063+0000 mon.smithi046 (mon.0) 619 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.733752+0000 mon.smithi046 (mon.0) 620 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.740688+0000 mon.smithi046 (mon.0) 621 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.749506+0000 mon.smithi046 (mon.0) 622 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: cephadm 2024-02-23T00:34:42.755992+0000 mgr.smithi046.lplrtl (mgr.14184) 239 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.760365+0000 mon.smithi046 (mon.0) 623 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.761296+0000 mon.smithi046 (mon.0) 624 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.zsaevf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.767194+0000 mon.smithi046 (mon.0) 625 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.zsaevf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.773366+0000 mon.smithi046 (mon.0) 626 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: audit 2024-02-23T00:34:42.774581+0000 mon.smithi046 (mon.0) 627 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: cephadm 2024-02-23T00:34:42.775575+0000 mgr.smithi046.lplrtl (mgr.14184) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi142.zsaevf on smithi142 2024-02-23T00:34:43.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:43 smithi046 bash[16275]: cluster 2024-02-23T00:34:43.184057+0000 mgr.smithi046.lplrtl (mgr.14184) 241 : cluster [DBG] pgmap v215: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.730022+0000 mon.smithi046 (mon.0) 618 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.732063+0000 mon.smithi046 (mon.0) 619 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.733752+0000 mon.smithi046 (mon.0) 620 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.740688+0000 mon.smithi046 (mon.0) 621 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.749506+0000 mon.smithi046 (mon.0) 622 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: cephadm 2024-02-23T00:34:42.755992+0000 mgr.smithi046.lplrtl (mgr.14184) 239 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.760365+0000 mon.smithi046 (mon.0) 623 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.761296+0000 mon.smithi046 (mon.0) 624 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.zsaevf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.767194+0000 mon.smithi046 (mon.0) 625 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi142.zsaevf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.773366+0000 mon.smithi046 (mon.0) 626 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: audit 2024-02-23T00:34:42.774581+0000 mon.smithi046 (mon.0) 627 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: cephadm 2024-02-23T00:34:42.775575+0000 mgr.smithi046.lplrtl (mgr.14184) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi142.zsaevf on smithi142 2024-02-23T00:34:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:43 smithi142 bash[20802]: cluster 2024-02-23T00:34:43.184057+0000 mgr.smithi046.lplrtl (mgr.14184) 241 : cluster [DBG] pgmap v215: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:44.978 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-23T00:34:44.996 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../10-python3-s3transfer_0.3.3-1ubuntu0.18.04.1_all.deb ... 2024-02-23T00:34:45.037 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-02-23T00:34:45.365 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-boto3. 2024-02-23T00:34:45.384 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../11-python3-boto3_1.4.2-1_all.deb ... 2024-02-23T00:34:45.423 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-boto3 (1.4.2-1) ... 2024-02-23T00:34:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: audit 2024-02-23T00:34:45.159772+0000 mon.smithi046 (mon.0) 628 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: audit 2024-02-23T00:34:45.161755+0000 mon.smithi046 (mon.0) 629 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi046.rywsyx", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:46.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: audit 2024-02-23T00:34:45.168025+0000 mon.smithi046 (mon.0) 630 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi046.rywsyx", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: audit 2024-02-23T00:34:45.173117+0000 mon.smithi046 (mon.0) 631 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: audit 2024-02-23T00:34:45.174662+0000 mon.smithi046 (mon.0) 632 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: cephadm 2024-02-23T00:34:45.175822+0000 mgr.smithi046.lplrtl (mgr.14184) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi046.rywsyx on smithi046 2024-02-23T00:34:46.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:46 smithi046 bash[16275]: cluster 2024-02-23T00:34:45.184789+0000 mgr.smithi046.lplrtl (mgr.14184) 243 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: audit 2024-02-23T00:34:45.159772+0000 mon.smithi046 (mon.0) 628 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: audit 2024-02-23T00:34:45.161755+0000 mon.smithi046 (mon.0) 629 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi046.rywsyx", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: audit 2024-02-23T00:34:45.168025+0000 mon.smithi046 (mon.0) 630 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi046.rywsyx", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: audit 2024-02-23T00:34:45.173117+0000 mon.smithi046 (mon.0) 631 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: audit 2024-02-23T00:34:45.174662+0000 mon.smithi046 (mon.0) 632 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: cephadm 2024-02-23T00:34:45.175822+0000 mgr.smithi046.lplrtl (mgr.14184) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi046.rywsyx on smithi046 2024-02-23T00:34:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:46 smithi142 bash[20802]: cluster 2024-02-23T00:34:45.184789+0000 mgr.smithi046.lplrtl (mgr.14184) 243 : cluster [DBG] pgmap v216: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:46.690 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-olefile. 2024-02-23T00:34:46.704 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../12-python3-olefile_0.45.1-1_all.deb ... 2024-02-23T00:34:46.782 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-olefile (0.45.1-1) ... 2024-02-23T00:34:47.186 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-pil:amd64. 2024-02-23T00:34:47.200 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../13-python3-pil_5.1.0-1ubuntu0.8_amd64.deb ... 2024-02-23T00:34:47.297 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-02-23T00:34:48.352 INFO:teuthology.orchestra.run.smithi046.stdout:Selecting previously unselected package python3-pygments. 2024-02-23T00:34:48.367 INFO:teuthology.orchestra.run.smithi046.stdout:Preparing to unpack .../14-python3-pygments_2.2.0+dfsg-1ubuntu0.2_all.deb ... 2024-02-23T00:34:48.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:48 smithi046 bash[16275]: cluster 2024-02-23T00:34:47.182875+0000 mon.smithi046 (mon.0) 633 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-23T00:34:48.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:48 smithi046 bash[16275]: cluster 2024-02-23T00:34:47.185503+0000 mgr.smithi046.lplrtl (mgr.14184) 244 : cluster [DBG] pgmap v218: 65 pgs: 32 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:48.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:48 smithi046 bash[16275]: audit 2024-02-23T00:34:47.187515+0000 mon.smithi142 (mon.1) 18 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-23T00:34:48.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:48 smithi046 bash[16275]: audit 2024-02-23T00:34:47.188251+0000 mon.smithi046 (mon.0) 634 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-23T00:34:48.410 INFO:teuthology.orchestra.run.smithi046.stdout:Unpacking python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-02-23T00:34:48.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:48 smithi142 bash[20802]: cluster 2024-02-23T00:34:47.182875+0000 mon.smithi046 (mon.0) 633 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-23T00:34:48.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:48 smithi142 bash[20802]: cluster 2024-02-23T00:34:47.185503+0000 mgr.smithi046.lplrtl (mgr.14184) 244 : cluster [DBG] pgmap v218: 65 pgs: 32 unknown, 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:34:48.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:48 smithi142 bash[20802]: audit 2024-02-23T00:34:47.187515+0000 mon.smithi142 (mon.1) 18 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-23T00:34:48.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:48 smithi142 bash[20802]: audit 2024-02-23T00:34:47.188251+0000 mon.smithi046 (mon.0) 634 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-23T00:34:49.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.188283+0000 mon.smithi046 (mon.0) 635 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: cluster 2024-02-23T00:34:48.188518+0000 mon.smithi046 (mon.0) 636 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.715186+0000 mon.smithi046 (mon.0) 637 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.725285+0000 mon.smithi046 (mon.0) 638 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.753266+0000 mon.smithi046 (mon.0) 639 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.759788+0000 mon.smithi046 (mon.0) 640 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.761270+0000 mon.smithi046 (mon.0) 641 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.767968+0000 mon.smithi046 (mon.0) 642 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.769652+0000 mon.smithi046 (mon.0) 643 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.824552+0000 mon.smithi046 (mon.0) 644 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.828331+0000 mon.smithi046 (mon.0) 645 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.885293+0000 mon.smithi046 (mon.0) 646 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:49.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.890453+0000 mon.smithi046 (mon.0) 647 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:49.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:49 smithi046 bash[16275]: audit 2024-02-23T00:34:48.900552+0000 mon.smithi046 (mon.0) 648 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:49.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.188283+0000 mon.smithi046 (mon.0) 635 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-23T00:34:49.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: cluster 2024-02-23T00:34:48.188518+0000 mon.smithi046 (mon.0) 636 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-23T00:34:49.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.715186+0000 mon.smithi046 (mon.0) 637 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.725285+0000 mon.smithi046 (mon.0) 638 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.753266+0000 mon.smithi046 (mon.0) 639 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.759788+0000 mon.smithi046 (mon.0) 640 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.761270+0000 mon.smithi046 (mon.0) 641 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.767968+0000 mon.smithi046 (mon.0) 642 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.769652+0000 mon.smithi046 (mon.0) 643 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.824552+0000 mon.smithi046 (mon.0) 644 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.828331+0000 mon.smithi046 (mon.0) 645 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.885293+0000 mon.smithi046 (mon.0) 646 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.890453+0000 mon.smithi046 (mon.0) 647 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi046.bqytkj-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-23T00:34:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:49 smithi142 bash[20802]: audit 2024-02-23T00:34:48.900552+0000 mon.smithi046 (mon.0) 648 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:34:50.457 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 2024-02-23T00:34:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cephadm 2024-02-23T00:34:48.752796+0000 mgr.smithi046.lplrtl (mgr.14184) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi046.bqytkj 2024-02-23T00:34:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cephadm 2024-02-23T00:34:48.760863+0000 mgr.smithi046.lplrtl (mgr.14184) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-23T00:34:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cephadm 2024-02-23T00:34:48.884401+0000 mgr.smithi046.lplrtl (mgr.14184) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-23T00:34:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cephadm 2024-02-23T00:34:48.884639+0000 mgr.smithi046.lplrtl (mgr.14184) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi046.bqytkj-rgw 2024-02-23T00:34:50.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cephadm 2024-02-23T00:34:48.902048+0000 mgr.smithi046.lplrtl (mgr.14184) 249 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi046.bqytkj on smithi046 2024-02-23T00:34:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cluster 2024-02-23T00:34:49.186033+0000 mgr.smithi046.lplrtl (mgr.14184) 250 : cluster [DBG] pgmap v220: 65 pgs: 2 creating+peering, 25 unknown, 38 active+clean; 358 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-02-23T00:34:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: cluster 2024-02-23T00:34:49.198290+0000 mon.smithi046 (mon.0) 649 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-23T00:34:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: audit 2024-02-23T00:34:49.205088+0000 mon.smithi142 (mon.1) 19 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-23T00:34:50.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:50 smithi046 bash[16275]: audit 2024-02-23T00:34:49.206835+0000 mon.smithi046 (mon.0) 650 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cephadm 2024-02-23T00:34:48.752796+0000 mgr.smithi046.lplrtl (mgr.14184) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi046.bqytkj 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cephadm 2024-02-23T00:34:48.760863+0000 mgr.smithi046.lplrtl (mgr.14184) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cephadm 2024-02-23T00:34:48.884401+0000 mgr.smithi046.lplrtl (mgr.14184) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cephadm 2024-02-23T00:34:48.884639+0000 mgr.smithi046.lplrtl (mgr.14184) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi046.bqytkj-rgw 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cephadm 2024-02-23T00:34:48.902048+0000 mgr.smithi046.lplrtl (mgr.14184) 249 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi046.bqytkj on smithi046 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cluster 2024-02-23T00:34:49.186033+0000 mgr.smithi046.lplrtl (mgr.14184) 250 : cluster [DBG] pgmap v220: 65 pgs: 2 creating+peering, 25 unknown, 38 active+clean; 358 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: cluster 2024-02-23T00:34:49.198290+0000 mon.smithi046 (mon.0) 649 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: audit 2024-02-23T00:34:49.205088+0000 mon.smithi142 (mon.1) 19 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-23T00:34:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:50 smithi142 bash[20802]: audit 2024-02-23T00:34:49.206835+0000 mon.smithi046 (mon.0) 650 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-23T00:34:50.695 INFO:teuthology.orchestra.run.smithi046.stdout:debconf: unable to initialize frontend: Dialog 2024-02-23T00:34:50.695 INFO:teuthology.orchestra.run.smithi046.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-23T00:34:50.695 INFO:teuthology.orchestra.run.smithi046.stdout:debconf: falling back to frontend: Readline 2024-02-23T00:34:50.898 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:34:50.899 INFO:teuthology.orchestra.run.smithi046.stdout:Creating config file /etc/papersize with new version 2024-02-23T00:34:51.296 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 2024-02-23T00:34:51.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:51 smithi046 bash[16275]: audit 2024-02-23T00:34:50.210703+0000 mon.smithi046 (mon.0) 651 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-23T00:34:51.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:51 smithi046 bash[16275]: cluster 2024-02-23T00:34:50.211848+0000 mon.smithi046 (mon.0) 652 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-23T00:34:51.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:51 smithi142 bash[20802]: audit 2024-02-23T00:34:50.210703+0000 mon.smithi046 (mon.0) 651 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-23T00:34:51.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:51 smithi142 bash[20802]: cluster 2024-02-23T00:34:50.211848+0000 mon.smithi046 (mon.0) 652 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-23T00:34:51.907 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-roman (2.0.0-3) ... 2024-02-23T00:34:52.310 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-pil:amd64 (5.1.0-1ubuntu0.8) ... 2024-02-23T00:34:52.330 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:52 smithi046 bash[16275]: cluster 2024-02-23T00:34:51.186518+0000 mgr.smithi046.lplrtl (mgr.14184) 251 : cluster [DBG] pgmap v223: 97 pgs: 24 creating+peering, 20 unknown, 53 active+clean; 374 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 510 B/s rd, 766 B/s wr, 1 op/s 2024-02-23T00:34:52.330 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:52 smithi046 bash[16275]: cluster 2024-02-23T00:34:51.220543+0000 mon.smithi046 (mon.0) 653 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-23T00:34:52.330 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:52 smithi046 bash[16275]: audit 2024-02-23T00:34:51.225820+0000 mon.smithi046 (mon.0) 654 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.330 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:52 smithi046 bash[16275]: audit 2024-02-23T00:34:51.228716+0000 mon.smithi142 (mon.1) 20 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.330 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:52 smithi046 bash[16275]: audit 2024-02-23T00:34:51.229668+0000 mon.smithi046 (mon.0) 655 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:52 smithi142 bash[20802]: cluster 2024-02-23T00:34:51.186518+0000 mgr.smithi046.lplrtl (mgr.14184) 251 : cluster [DBG] pgmap v223: 97 pgs: 24 creating+peering, 20 unknown, 53 active+clean; 374 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 510 B/s rd, 766 B/s wr, 1 op/s 2024-02-23T00:34:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:52 smithi142 bash[20802]: cluster 2024-02-23T00:34:51.220543+0000 mon.smithi046 (mon.0) 653 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-23T00:34:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:52 smithi142 bash[20802]: audit 2024-02-23T00:34:51.225820+0000 mon.smithi046 (mon.0) 654 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:52 smithi142 bash[20802]: audit 2024-02-23T00:34:51.228716+0000 mon.smithi142 (mon.1) 20 : audit [INF] from='client.? 172.21.15.142:0/3718535810' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:52 smithi142 bash[20802]: audit 2024-02-23T00:34:51.229668+0000 mon.smithi046 (mon.0) 655 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-23T00:34:52.847 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-olefile (0.45.1-1) ... 2024-02-23T00:34:53.300 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up sgml-base (1.29) ... 2024-02-23T00:34:53.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:53 smithi142 bash[20802]: audit 2024-02-23T00:34:52.221131+0000 mon.smithi046 (mon.0) 656 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-23T00:34:53.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:53 smithi142 bash[20802]: audit 2024-02-23T00:34:52.221271+0000 mon.smithi046 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-23T00:34:53.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:53 smithi142 bash[20802]: cluster 2024-02-23T00:34:52.221395+0000 mon.smithi046 (mon.0) 658 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-23T00:34:53.589 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-jmespath (0.9.3-1ubuntu1.1) ... 2024-02-23T00:34:53.721 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:53 smithi046 bash[16275]: audit 2024-02-23T00:34:52.221131+0000 mon.smithi046 (mon.0) 656 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-23T00:34:53.721 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:53 smithi046 bash[16275]: audit 2024-02-23T00:34:52.221271+0000 mon.smithi046 (mon.0) 657 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-23T00:34:53.721 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:53 smithi046 bash[16275]: cluster 2024-02-23T00:34:52.221395+0000 mon.smithi046 (mon.0) 658 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-23T00:34:53.930 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up xml-core (0.18) ... 2024-02-23T00:34:54.484 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-dateutil (2.6.1-1) ... 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: cluster 2024-02-23T00:34:53.187080+0000 mgr.smithi046.lplrtl (mgr.14184) 252 : cluster [DBG] pgmap v226: 129 pgs: 29 creating+peering, 24 unknown, 76 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.2 KiB/s wr, 4 op/s 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.241029+0000 mon.smithi046 (mon.0) 659 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: cluster 2024-02-23T00:34:53.248354+0000 mon.smithi046 (mon.0) 660 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.251308+0000 mon.smithi046 (mon.0) 661 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.257131+0000 mon.smithi046 (mon.0) 662 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.259737+0000 mon.smithi142 (mon.1) 21 : audit [INF] from='client.? 172.21.15.142:0/1486609326' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.261180+0000 mon.smithi046 (mon.0) 663 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: audit 2024-02-23T00:34:53.264004+0000 mon.smithi046 (mon.0) 664 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:54 smithi142 bash[20802]: cephadm 2024-02-23T00:34:53.274923+0000 mgr.smithi046.lplrtl (mgr.14184) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dqnttf on smithi142 2024-02-23T00:34:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: cluster 2024-02-23T00:34:53.187080+0000 mgr.smithi046.lplrtl (mgr.14184) 252 : cluster [DBG] pgmap v226: 129 pgs: 29 creating+peering, 24 unknown, 76 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.2 KiB/s wr, 4 op/s 2024-02-23T00:34:54.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.241029+0000 mon.smithi046 (mon.0) 659 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: cluster 2024-02-23T00:34:53.248354+0000 mon.smithi046 (mon.0) 660 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.251308+0000 mon.smithi046 (mon.0) 661 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.257131+0000 mon.smithi046 (mon.0) 662 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.259737+0000 mon.smithi142 (mon.1) 21 : audit [INF] from='client.? 172.21.15.142:0/1486609326' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.261180+0000 mon.smithi046 (mon.0) 663 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: audit 2024-02-23T00:34:53.264004+0000 mon.smithi046 (mon.0) 664 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:34:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:54 smithi046 bash[16275]: cephadm 2024-02-23T00:34:53.274923+0000 mgr.smithi046.lplrtl (mgr.14184) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dqnttf on smithi142 2024-02-23T00:34:54.794 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-pygments (2.2.0+dfsg-1ubuntu0.2) ... 2024-02-23T00:34:55.358 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for libc-bin (2.27-3ubuntu1.6) ... 2024-02-23T00:34:55.482 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 2024-02-23T00:34:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: audit 2024-02-23T00:34:54.259398+0000 mon.smithi046 (mon.0) 665 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-23T00:34:55.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: audit 2024-02-23T00:34:54.259628+0000 mon.smithi046 (mon.0) 666 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-23T00:34:55.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: cluster 2024-02-23T00:34:54.259799+0000 mon.smithi046 (mon.0) 667 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-23T00:34:55.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: audit 2024-02-23T00:34:54.265177+0000 mon.smithi142 (mon.1) 22 : audit [INF] from='client.? 172.21.15.142:0/1486609326' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:55.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: audit 2024-02-23T00:34:54.266271+0000 mon.smithi046 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:55.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:55 smithi046 bash[16275]: audit 2024-02-23T00:34:54.266656+0000 mon.smithi046 (mon.0) 669 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:55.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: audit 2024-02-23T00:34:54.259398+0000 mon.smithi046 (mon.0) 665 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-23T00:34:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: audit 2024-02-23T00:34:54.259628+0000 mon.smithi046 (mon.0) 666 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-23T00:34:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: cluster 2024-02-23T00:34:54.259799+0000 mon.smithi046 (mon.0) 667 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-23T00:34:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: audit 2024-02-23T00:34:54.265177+0000 mon.smithi142 (mon.1) 22 : audit [INF] from='client.? 172.21.15.142:0/1486609326' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: audit 2024-02-23T00:34:54.266271+0000 mon.smithi046 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:55 smithi142 bash[20802]: audit 2024-02-23T00:34:54.266656+0000 mon.smithi046 (mon.0) 669 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:34:56.043 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for shared-mime-info (1.9-2) ... 2024-02-23T00:34:56.666 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:56 smithi142 bash[20802]: cluster 2024-02-23T00:34:55.188295+0000 mgr.smithi046.lplrtl (mgr.14184) 254 : cluster [DBG] pgmap v229: 161 pgs: 12 creating+peering, 11 unknown, 138 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.7 KiB/s rd, 2.7 KiB/s wr, 10 op/s 2024-02-23T00:34:56.666 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:56 smithi142 bash[20802]: audit 2024-02-23T00:34:55.269700+0000 mon.smithi046 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:34:56.666 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:56 smithi142 bash[20802]: audit 2024-02-23T00:34:55.269877+0000 mon.smithi046 (mon.0) 671 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:34:56.667 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:56 smithi142 bash[20802]: cluster 2024-02-23T00:34:55.270028+0000 mon.smithi046 (mon.0) 672 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-23T00:34:56.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:56 smithi046 bash[16275]: cluster 2024-02-23T00:34:55.188295+0000 mgr.smithi046.lplrtl (mgr.14184) 254 : cluster [DBG] pgmap v229: 161 pgs: 12 creating+peering, 11 unknown, 138 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.7 KiB/s rd, 2.7 KiB/s wr, 10 op/s 2024-02-23T00:34:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:56 smithi046 bash[16275]: audit 2024-02-23T00:34:55.269700+0000 mon.smithi046 (mon.0) 670 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi142.zsaevf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:34:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:56 smithi046 bash[16275]: audit 2024-02-23T00:34:55.269877+0000 mon.smithi046 (mon.0) 671 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:34:56.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:56 smithi046 bash[16275]: cluster 2024-02-23T00:34:55.270028+0000 mon.smithi046 (mon.0) 672 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-23T00:34:57.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:57 smithi046 bash[16275]: audit 2024-02-23T00:34:57.086075+0000 mon.smithi046 (mon.0) 673 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dqnttf"}]: dispatch 2024-02-23T00:34:57.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:57 smithi142 bash[20802]: audit 2024-02-23T00:34:57.086075+0000 mon.smithi046 (mon.0) 673 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dqnttf"}]: dispatch 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: cephadm 2024-02-23T00:34:57.084717+0000 mgr.smithi046.lplrtl (mgr.14184) 255 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: cephadm 2024-02-23T00:34:57.085335+0000 mgr.smithi046.lplrtl (mgr.14184) 256 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: cephadm 2024-02-23T00:34:57.087780+0000 mgr.smithi046.lplrtl (mgr.14184) 257 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dqnttf on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: cephadm 2024-02-23T00:34:57.090188+0000 mgr.smithi046.lplrtl (mgr.14184) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.vantmm on smithi046 2024-02-23T00:34:58.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:34:58 smithi046 bash[16275]: cluster 2024-02-23T00:34:57.189217+0000 mgr.smithi046.lplrtl (mgr.14184) 259 : cluster [DBG] pgmap v231: 161 pgs: 5 creating+peering, 2 unknown, 154 active+clean; 1.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 2.0 KiB/s wr, 37 op/s 2024-02-23T00:34:58.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: cephadm 2024-02-23T00:34:57.084717+0000 mgr.smithi046.lplrtl (mgr.14184) 255 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:34:58.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: cephadm 2024-02-23T00:34:57.085335+0000 mgr.smithi046.lplrtl (mgr.14184) 256 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: cephadm 2024-02-23T00:34:57.087780+0000 mgr.smithi046.lplrtl (mgr.14184) 257 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dqnttf on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dqnttf 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dqnttf 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dqnttf ... 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: cephadm 2024-02-23T00:34:57.090188+0000 mgr.smithi046.lplrtl (mgr.14184) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.vantmm on smithi046 2024-02-23T00:34:58.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:34:58 smithi142 bash[20802]: cluster 2024-02-23T00:34:57.189217+0000 mgr.smithi046.lplrtl (mgr.14184) 259 : cluster [DBG] pgmap v231: 161 pgs: 5 creating+peering, 2 unknown, 154 active+clean; 1.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 2.0 KiB/s wr, 37 op/s 2024-02-23T00:35:00.555 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:00 smithi046 bash[16275]: cluster 2024-02-23T00:34:59.190207+0000 mgr.smithi046.lplrtl (mgr.14184) 260 : cluster [DBG] pgmap v232: 161 pgs: 161 active+clean; 2.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 3.0 KiB/s wr, 131 op/s 2024-02-23T00:35:00.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:00 smithi142 bash[20802]: cluster 2024-02-23T00:34:59.190207+0000 mgr.smithi046.lplrtl (mgr.14184) 260 : cluster [DBG] pgmap v232: 161 pgs: 161 active+clean; 2.6 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 3.0 KiB/s wr, 131 op/s 2024-02-23T00:35:01.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:01 smithi046 bash[16275]: audit 2024-02-23T00:35:00.960268+0000 mon.smithi046 (mon.0) 674 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.vantmm"}]: dispatch 2024-02-23T00:35:01.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:01 smithi046 bash[16275]: audit 2024-02-23T00:35:00.972768+0000 mon.smithi046 (mon.0) 675 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:01.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:01 smithi046 bash[16275]: audit 2024-02-23T00:35:00.976884+0000 mon.smithi046 (mon.0) 676 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:35:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:01 smithi142 bash[20802]: audit 2024-02-23T00:35:00.960268+0000 mon.smithi046 (mon.0) 674 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.vantmm"}]: dispatch 2024-02-23T00:35:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:01 smithi142 bash[20802]: audit 2024-02-23T00:35:00.972768+0000 mon.smithi046 (mon.0) 675 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:01 smithi142 bash[20802]: audit 2024-02-23T00:35:00.976884+0000 mon.smithi046 (mon.0) 676 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cephadm 2024-02-23T00:35:00.959003+0000 mgr.smithi046.lplrtl (mgr.14184) 261 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cephadm 2024-02-23T00:35:00.959432+0000 mgr.smithi046.lplrtl (mgr.14184) 262 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cephadm 2024-02-23T00:35:00.962014+0000 mgr.smithi046.lplrtl (mgr.14184) 263 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.vantmm on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cephadm 2024-02-23T00:35:00.973299+0000 mgr.smithi046.lplrtl (mgr.14184) 264 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.ikasub on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:02.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cephadm 2024-02-23T00:35:00.975520+0000 mgr.smithi046.lplrtl (mgr.14184) 265 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.quobqs on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:02.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cluster 2024-02-23T00:35:00.977420+0000 mgr.smithi046.lplrtl (mgr.14184) 266 : cluster [DBG] pgmap v233: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 167 KiB/s rd, 5.2 KiB/s wr, 316 op/s 2024-02-23T00:35:02.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:02 smithi046 bash[16275]: cluster 2024-02-23T00:35:01.968928+0000 mon.smithi046 (mon.0) 677 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cephadm 2024-02-23T00:35:00.959003+0000 mgr.smithi046.lplrtl (mgr.14184) 261 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:35:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cephadm 2024-02-23T00:35:00.959432+0000 mgr.smithi046.lplrtl (mgr.14184) 262 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cephadm 2024-02-23T00:35:00.962014+0000 mgr.smithi046.lplrtl (mgr.14184) 263 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.vantmm on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.vantmm 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.vantmm ... 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cephadm 2024-02-23T00:35:00.973299+0000 mgr.smithi046.lplrtl (mgr.14184) 264 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.ikasub on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cephadm 2024-02-23T00:35:00.975520+0000 mgr.smithi046.lplrtl (mgr.14184) 265 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.quobqs on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cluster 2024-02-23T00:35:00.977420+0000 mgr.smithi046.lplrtl (mgr.14184) 266 : cluster [DBG] pgmap v233: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 167 KiB/s rd, 5.2 KiB/s wr, 316 op/s 2024-02-23T00:35:02.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:02 smithi142 bash[20802]: cluster 2024-02-23T00:35:01.968928+0000 mon.smithi046 (mon.0) 677 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:04.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:04 smithi046 bash[16275]: cluster 2024-02-23T00:35:02.978598+0000 mgr.smithi046.lplrtl (mgr.14184) 267 : cluster [DBG] pgmap v234: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 155 KiB/s rd, 4.6 KiB/s wr, 290 op/s 2024-02-23T00:35:04.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:04 smithi046 bash[16275]: audit 2024-02-23T00:35:03.275804+0000 mon.smithi046 (mon.0) 678 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:04.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:04 smithi142 bash[20802]: cluster 2024-02-23T00:35:02.978598+0000 mgr.smithi046.lplrtl (mgr.14184) 267 : cluster [DBG] pgmap v234: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 155 KiB/s rd, 4.6 KiB/s wr, 290 op/s 2024-02-23T00:35:04.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:04 smithi142 bash[20802]: audit 2024-02-23T00:35:03.275804+0000 mon.smithi046 (mon.0) 678 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:06.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:06 smithi046 bash[16275]: cluster 2024-02-23T00:35:04.980316+0000 mgr.smithi046.lplrtl (mgr.14184) 268 : cluster [DBG] pgmap v235: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 159 KiB/s rd, 3.3 KiB/s wr, 289 op/s 2024-02-23T00:35:06.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:06 smithi046 bash[16275]: audit 2024-02-23T00:35:05.311358+0000 mon.smithi046 (mon.0) 679 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:06 smithi142 bash[20802]: cluster 2024-02-23T00:35:04.980316+0000 mgr.smithi046.lplrtl (mgr.14184) 268 : cluster [DBG] pgmap v235: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 159 KiB/s rd, 3.3 KiB/s wr, 289 op/s 2024-02-23T00:35:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:06 smithi142 bash[20802]: audit 2024-02-23T00:35:05.311358+0000 mon.smithi046 (mon.0) 679 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:08.206 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: audit 2024-02-23T00:35:06.868516+0000 mon.smithi046 (mon.0) 680 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:08.207 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: cluster 2024-02-23T00:35:06.981332+0000 mgr.smithi046.lplrtl (mgr.14184) 269 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 133 KiB/s rd, 2.7 KiB/s wr, 242 op/s 2024-02-23T00:35:08.207 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: audit 2024-02-23T00:35:07.207391+0000 mon.smithi046 (mon.0) 681 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:08.207 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: audit 2024-02-23T00:35:07.498034+0000 mon.smithi046 (mon.0) 682 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:35:08.207 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: audit 2024-02-23T00:35:07.499741+0000 mon.smithi046 (mon.0) 683 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:35:08.207 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:07 smithi046 bash[16275]: cephadm 2024-02-23T00:35:07.505996+0000 mgr.smithi046.lplrtl (mgr.14184) 270 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-23T00:35:08.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: audit 2024-02-23T00:35:06.868516+0000 mon.smithi046 (mon.0) 680 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: cluster 2024-02-23T00:35:06.981332+0000 mgr.smithi046.lplrtl (mgr.14184) 269 : cluster [DBG] pgmap v236: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 133 KiB/s rd, 2.7 KiB/s wr, 242 op/s 2024-02-23T00:35:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: audit 2024-02-23T00:35:07.207391+0000 mon.smithi046 (mon.0) 681 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: audit 2024-02-23T00:35:07.498034+0000 mon.smithi046 (mon.0) 682 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:35:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: audit 2024-02-23T00:35:07.499741+0000 mon.smithi046 (mon.0) 683 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:35:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:07 smithi142 bash[20802]: cephadm 2024-02-23T00:35:07.505996+0000 mgr.smithi046.lplrtl (mgr.14184) 270 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:07.918512+0000 mon.smithi046 (mon.0) 684 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:07.927770+0000 mon.smithi046 (mon.0) 685 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:07.934545+0000 mon.smithi046 (mon.0) 686 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: cluster 2024-02-23T00:35:07.936288+0000 mgr.smithi046.lplrtl (mgr.14184) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 140 KiB/s rd, 2.8 KiB/s wr, 253 op/s 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:07.947067+0000 mon.smithi046 (mon.0) 687 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:07.966016+0000 mon.smithi046 (mon.0) 688 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: cephadm 2024-02-23T00:35:07.973348+0000 mgr.smithi046.lplrtl (mgr.14184) 272 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zgzwua on smithi142 2024-02-23T00:35:09.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:08 smithi046 bash[16275]: audit 2024-02-23T00:35:08.288297+0000 mon.smithi046 (mon.0) 689 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:07.918512+0000 mon.smithi046 (mon.0) 684 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:07.927770+0000 mon.smithi046 (mon.0) 685 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:07.934545+0000 mon.smithi046 (mon.0) 686 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: cluster 2024-02-23T00:35:07.936288+0000 mgr.smithi046.lplrtl (mgr.14184) 271 : cluster [DBG] pgmap v237: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 140 KiB/s rd, 2.8 KiB/s wr, 253 op/s 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:07.947067+0000 mon.smithi046 (mon.0) 687 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:35:09.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:07.966016+0000 mon.smithi046 (mon.0) 688 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: cephadm 2024-02-23T00:35:07.973348+0000 mgr.smithi046.lplrtl (mgr.14184) 272 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zgzwua on smithi142 2024-02-23T00:35:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:08 smithi142 bash[20802]: audit 2024-02-23T00:35:08.288297+0000 mon.smithi046 (mon.0) 689 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:10.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:09 smithi046 bash[16275]: cluster 2024-02-23T00:35:08.932442+0000 mon.smithi046 (mon.0) 690 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:35:10.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:09 smithi046 bash[16275]: cluster 2024-02-23T00:35:08.932513+0000 mon.smithi046 (mon.0) 691 : cluster [INF] Cluster is now healthy 2024-02-23T00:35:10.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:09 smithi142 bash[20802]: cluster 2024-02-23T00:35:08.932442+0000 mon.smithi046 (mon.0) 690 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:35:10.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:09 smithi142 bash[20802]: cluster 2024-02-23T00:35:08.932513+0000 mon.smithi046 (mon.0) 691 : cluster [INF] Cluster is now healthy 2024-02-23T00:35:11.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:10 smithi046 bash[16275]: cluster 2024-02-23T00:35:09.937811+0000 mgr.smithi046.lplrtl (mgr.14184) 273 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 123 KiB/s rd, 2.2 KiB/s wr, 215 op/s 2024-02-23T00:35:11.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:10 smithi142 bash[20802]: cluster 2024-02-23T00:35:09.937811+0000 mgr.smithi046.lplrtl (mgr.14184) 273 : cluster [DBG] pgmap v238: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 123 KiB/s rd, 2.2 KiB/s wr, 215 op/s 2024-02-23T00:35:12.235 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:11 smithi046 bash[16275]: audit 2024-02-23T00:35:11.772224+0000 mon.smithi046 (mon.0) 692 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zgzwua"}]: dispatch 2024-02-23T00:35:12.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:11 smithi142 bash[20802]: audit 2024-02-23T00:35:11.772224+0000 mon.smithi046 (mon.0) 692 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zgzwua"}]: dispatch 2024-02-23T00:35:13.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: cephadm 2024-02-23T00:35:11.771360+0000 mgr.smithi046.lplrtl (mgr.14184) 274 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:35:13.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: cephadm 2024-02-23T00:35:11.771751+0000 mgr.smithi046.lplrtl (mgr.14184) 275 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: cephadm 2024-02-23T00:35:11.773244+0000 mgr.smithi046.lplrtl (mgr.14184) 276 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zgzwua on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: cephadm 2024-02-23T00:35:11.775597+0000 mgr.smithi046.lplrtl (mgr.14184) 277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.aadxux on smithi046 2024-02-23T00:35:13.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:12 smithi046 bash[16275]: cluster 2024-02-23T00:35:11.938869+0000 mgr.smithi046.lplrtl (mgr.14184) 278 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 186 B/s wr, 61 op/s 2024-02-23T00:35:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: cephadm 2024-02-23T00:35:11.771360+0000 mgr.smithi046.lplrtl (mgr.14184) 274 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: cephadm 2024-02-23T00:35:11.771751+0000 mgr.smithi046.lplrtl (mgr.14184) 275 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: cephadm 2024-02-23T00:35:11.773244+0000 mgr.smithi046.lplrtl (mgr.14184) 276 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zgzwua on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zgzwua 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zgzwua 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zgzwua ... 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: cephadm 2024-02-23T00:35:11.775597+0000 mgr.smithi046.lplrtl (mgr.14184) 277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.aadxux on smithi046 2024-02-23T00:35:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:12 smithi142 bash[20802]: cluster 2024-02-23T00:35:11.938869+0000 mgr.smithi046.lplrtl (mgr.14184) 278 : cluster [DBG] pgmap v239: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 186 B/s wr, 61 op/s 2024-02-23T00:35:15.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:14 smithi046 bash[16275]: cluster 2024-02-23T00:35:13.939887+0000 mgr.smithi046.lplrtl (mgr.14184) 279 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 186 B/s wr, 53 op/s 2024-02-23T00:35:15.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:14 smithi142 bash[20802]: cluster 2024-02-23T00:35:13.939887+0000 mgr.smithi046.lplrtl (mgr.14184) 279 : cluster [DBG] pgmap v240: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 186 B/s wr, 53 op/s 2024-02-23T00:35:15.265 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for sgml-base (1.29) ... 2024-02-23T00:35:15.404 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up docutils-common (0.14+dfsg-3) ... 2024-02-23T00:35:15.902 INFO:teuthology.orchestra.run.smithi046.stdout:Processing triggers for sgml-base (1.29) ... 2024-02-23T00:35:16.026 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-docutils (0.14+dfsg-3) ... 2024-02-23T00:35:16.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:15 smithi046 bash[16275]: audit 2024-02-23T00:35:15.647059+0000 mon.smithi046 (mon.0) 693 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.aadxux"}]: dispatch 2024-02-23T00:35:16.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:15 smithi046 bash[16275]: audit 2024-02-23T00:35:15.662310+0000 mon.smithi046 (mon.0) 694 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:35:16.257 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:15 smithi142 bash[20802]: audit 2024-02-23T00:35:15.647059+0000 mon.smithi046 (mon.0) 693 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.aadxux"}]: dispatch 2024-02-23T00:35:16.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:15 smithi142 bash[20802]: audit 2024-02-23T00:35:15.662310+0000 mon.smithi046 (mon.0) 694 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:35:16.354 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-23T00:35:16.401 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-23T00:35:16.432 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-23T00:35:16.474 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-23T00:35:16.508 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-23T00:35:16.539 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-23T00:35:16.566 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-23T00:35:16.592 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-23T00:35:16.618 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-23T00:35:16.635 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-23T00:35:16.660 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-23T00:35:16.685 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-23T00:35:16.720 INFO:teuthology.orchestra.run.smithi046.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-23T00:35:17.127 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.18.04.1) ... 2024-02-23T00:35:17.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cephadm 2024-02-23T00:35:15.646052+0000 mgr.smithi046.lplrtl (mgr.14184) 280 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.236 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:35:17.237 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cephadm 2024-02-23T00:35:15.646485+0000 mgr.smithi046.lplrtl (mgr.14184) 281 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cephadm 2024-02-23T00:35:15.648266+0000 mgr.smithi046.lplrtl (mgr.14184) 282 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.aadxux on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cephadm 2024-02-23T00:35:15.652557+0000 mgr.smithi046.lplrtl (mgr.14184) 283 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.zucvjz on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:17.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cephadm 2024-02-23T00:35:15.654937+0000 mgr.smithi046.lplrtl (mgr.14184) 284 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:17.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cluster 2024-02-23T00:35:15.656743+0000 mgr.smithi046.lplrtl (mgr.14184) 285 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 191 B/s wr, 23 op/s 2024-02-23T00:35:17.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:16 smithi046 bash[16275]: cluster 2024-02-23T00:35:15.947723+0000 mon.smithi046 (mon.0) 695 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:17.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cephadm 2024-02-23T00:35:15.646052+0000 mgr.smithi046.lplrtl (mgr.14184) 280 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:35:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cephadm 2024-02-23T00:35:15.646485+0000 mgr.smithi046.lplrtl (mgr.14184) 281 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cephadm 2024-02-23T00:35:15.648266+0000 mgr.smithi046.lplrtl (mgr.14184) 282 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.aadxux on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-aadxux 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.aadxux 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.aadxux ... 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cephadm 2024-02-23T00:35:15.652557+0000 mgr.smithi046.lplrtl (mgr.14184) 283 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.zucvjz on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cephadm 2024-02-23T00:35:15.654937+0000 mgr.smithi046.lplrtl (mgr.14184) 284 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cluster 2024-02-23T00:35:15.656743+0000 mgr.smithi046.lplrtl (mgr.14184) 285 : cluster [DBG] pgmap v241: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 191 B/s wr, 23 op/s 2024-02-23T00:35:17.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:16 smithi142 bash[20802]: cluster 2024-02-23T00:35:15.947723+0000 mon.smithi046 (mon.0) 695 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:17.495 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-s3transfer (0.3.3-1ubuntu0.18.04.1) ... 2024-02-23T00:35:17.804 INFO:teuthology.orchestra.run.smithi046.stdout:Setting up python3-boto3 (1.4.2-1) ... 2024-02-23T00:35:18.487 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T00:35:18.542 INFO:teuthology.orchestra.run.smithi046.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-23T00:35:19.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:19 smithi046 bash[16275]: cluster 2024-02-23T00:35:17.657519+0000 mgr.smithi046.lplrtl (mgr.14184) 286 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 191 B/s wr, 23 op/s 2024-02-23T00:35:19.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:19 smithi046 bash[16275]: audit 2024-02-23T00:35:18.306727+0000 mon.smithi046 (mon.0) 696 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:19.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:19 smithi142 bash[20802]: cluster 2024-02-23T00:35:17.657519+0000 mgr.smithi046.lplrtl (mgr.14184) 286 : cluster [DBG] pgmap v242: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 16 KiB/s rd, 191 B/s wr, 23 op/s 2024-02-23T00:35:19.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:19 smithi142 bash[20802]: audit 2024-02-23T00:35:18.306727+0000 mon.smithi046 (mon.0) 696 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:21.735 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:21 smithi046 bash[16275]: cluster 2024-02-23T00:35:19.659186+0000 mgr.smithi046.lplrtl (mgr.14184) 287 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 174 B/s wr, 18 op/s 2024-02-23T00:35:21.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:21 smithi142 bash[20802]: cluster 2024-02-23T00:35:19.659186+0000 mgr.smithi046.lplrtl (mgr.14184) 287 : cluster [DBG] pgmap v243: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 174 B/s wr, 18 op/s 2024-02-23T00:35:22.589 INFO:teuthology.orchestra.run.smithi046.stderr:Inferring fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 2024-02-23T00:35:22.619 INFO:teuthology.orchestra.run.smithi046.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:44277403522cf37edeee63b04643fd6c6e9416f13c3731a771e3cc8e53b7d010 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:21.543802+0000 mon.smithi046 (mon.0) 697 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: cluster 2024-02-23T00:35:21.660177+0000 mgr.smithi046.lplrtl (mgr.14184) 288 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:21.933917+0000 mon.smithi046 (mon.0) 698 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:21.935596+0000 mon.smithi046 (mon.0) 699 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:21.937003+0000 mon.smithi046 (mon.0) 700 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: cephadm 2024-02-23T00:35:21.945788+0000 mgr.smithi046.lplrtl (mgr.14184) 289 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:22.220346+0000 mon.smithi046 (mon.0) 701 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: cluster 2024-02-23T00:35:22.221435+0000 mgr.smithi046.lplrtl (mgr.14184) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:35:23.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:22.230990+0000 mon.smithi046 (mon.0) 702 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:35:23.013 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: audit 2024-02-23T00:35:22.244169+0000 mon.smithi046 (mon.0) 703 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.013 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:22 smithi142 bash[20802]: cephadm 2024-02-23T00:35:22.248282+0000 mgr.smithi046.lplrtl (mgr.14184) 291 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.bshtty on smithi142 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:21.543802+0000 mon.smithi046 (mon.0) 697 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: cluster 2024-02-23T00:35:21.660177+0000 mgr.smithi046.lplrtl (mgr.14184) 288 : cluster [DBG] pgmap v244: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:21.933917+0000 mon.smithi046 (mon.0) 698 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:21.935596+0000 mon.smithi046 (mon.0) 699 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:21.937003+0000 mon.smithi046 (mon.0) 700 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: cephadm 2024-02-23T00:35:21.945788+0000 mgr.smithi046.lplrtl (mgr.14184) 289 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:22.220346+0000 mon.smithi046 (mon.0) 701 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.167 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: cluster 2024-02-23T00:35:22.221435+0000 mgr.smithi046.lplrtl (mgr.14184) 290 : cluster [DBG] pgmap v245: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:35:23.168 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:22.230990+0000 mon.smithi046 (mon.0) 702 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:35:23.168 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: audit 2024-02-23T00:35:22.244169+0000 mon.smithi046 (mon.0) 703 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:23.168 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:22 smithi046 bash[16275]: cephadm 2024-02-23T00:35:22.248282+0000 mgr.smithi046.lplrtl (mgr.14184) 291 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.bshtty on smithi142 2024-02-23T00:35:23.985 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:23 smithi046 bash[16275]: cluster 2024-02-23T00:35:22.541671+0000 mon.smithi046 (mon.0) 704 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:35:23.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:23 smithi046 bash[16275]: cluster 2024-02-23T00:35:22.541759+0000 mon.smithi046 (mon.0) 705 : cluster [INF] Cluster is now healthy 2024-02-23T00:35:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:23 smithi142 bash[20802]: cluster 2024-02-23T00:35:22.541671+0000 mon.smithi046 (mon.0) 704 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:35:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:23 smithi142 bash[20802]: cluster 2024-02-23T00:35:22.541759+0000 mon.smithi046 (mon.0) 705 : cluster [INF] Cluster is now healthy 2024-02-23T00:35:24.889 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:24 smithi046 bash[16275]: cluster 2024-02-23T00:35:24.222651+0000 mgr.smithi046.lplrtl (mgr.14184) 292 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 298 B/s rd, 0 op/s 2024-02-23T00:35:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:24 smithi142 bash[20802]: cluster 2024-02-23T00:35:24.222651+0000 mgr.smithi046.lplrtl (mgr.14184) 292 : cluster [DBG] pgmap v246: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 298 B/s rd, 0 op/s 2024-02-23T00:35:26.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:26 smithi046 bash[16275]: audit 2024-02-23T00:35:26.128018+0000 mon.smithi046 (mon.0) 706 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.bshtty"}]: dispatch 2024-02-23T00:35:26.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:26 smithi142 bash[20802]: audit 2024-02-23T00:35:26.128018+0000 mon.smithi046 (mon.0) 706 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.bshtty"}]: dispatch 2024-02-23T00:35:27.120 INFO:teuthology.run_tasks:Running task python... 2024-02-23T00:35:27.160 INFO:tasks.python:Running python on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:35:27.160 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-02-23T00:35:27.160 DEBUG:teuthology.orchestra.run.smithi046:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-23T00:35:27.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: cephadm 2024-02-23T00:35:26.126690+0000 mgr.smithi046.lplrtl (mgr.14184) 293 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: cephadm 2024-02-23T00:35:26.127287+0000 mgr.smithi046.lplrtl (mgr.14184) 294 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: cephadm 2024-02-23T00:35:26.129468+0000 mgr.smithi046.lplrtl (mgr.14184) 295 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: cephadm 2024-02-23T00:35:26.131859+0000 mgr.smithi046.lplrtl (mgr.14184) 296 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.mkfsov on smithi046 2024-02-23T00:35:27.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:27 smithi046 bash[16275]: cluster 2024-02-23T00:35:26.224153+0000 mgr.smithi046.lplrtl (mgr.14184) 297 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1 op/s 2024-02-23T00:35:27.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: cephadm 2024-02-23T00:35:26.126690+0000 mgr.smithi046.lplrtl (mgr.14184) 293 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:27.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: cephadm 2024-02-23T00:35:26.127287+0000 mgr.smithi046.lplrtl (mgr.14184) 294 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: cephadm 2024-02-23T00:35:26.129468+0000 mgr.smithi046.lplrtl (mgr.14184) 295 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.bshtty ... 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:27.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: cephadm 2024-02-23T00:35:26.131859+0000 mgr.smithi046.lplrtl (mgr.14184) 296 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.mkfsov on smithi046 2024-02-23T00:35:27.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:27 smithi142 bash[20802]: cluster 2024-02-23T00:35:26.224153+0000 mgr.smithi046.lplrtl (mgr.14184) 297 : cluster [DBG] pgmap v247: 161 pgs: 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1 op/s 2024-02-23T00:35:29.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:29 smithi046 bash[16275]: cluster 2024-02-23T00:35:28.203016+0000 mon.smithi046 (mon.0) 707 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-23T00:35:29.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:29 smithi046 bash[16275]: audit 2024-02-23T00:35:28.209604+0000 mon.smithi046 (mon.0) 708 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-23T00:35:29.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:29 smithi046 bash[16275]: cluster 2024-02-23T00:35:28.224738+0000 mgr.smithi046.lplrtl (mgr.14184) 298 : cluster [DBG] pgmap v249: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.8 KiB/s rd, 119 B/s wr, 3 op/s 2024-02-23T00:35:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:29 smithi142 bash[20802]: cluster 2024-02-23T00:35:28.203016+0000 mon.smithi046 (mon.0) 707 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-23T00:35:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:29 smithi142 bash[20802]: audit 2024-02-23T00:35:28.209604+0000 mon.smithi046 (mon.0) 708 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-23T00:35:29.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:29 smithi142 bash[20802]: cluster 2024-02-23T00:35:28.224738+0000 mgr.smithi046.lplrtl (mgr.14184) 298 : cluster [DBG] pgmap v249: 193 pgs: 32 unknown, 161 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.8 KiB/s rd, 119 B/s wr, 3 op/s 2024-02-23T00:35:30.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:30 smithi046 bash[16275]: audit 2024-02-23T00:35:29.211394+0000 mon.smithi046 (mon.0) 709 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-23T00:35:30.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:30 smithi046 bash[16275]: cluster 2024-02-23T00:35:29.211645+0000 mon.smithi046 (mon.0) 710 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-23T00:35:30.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:30 smithi046 bash[16275]: audit 2024-02-23T00:35:29.213869+0000 mon.smithi046 (mon.0) 711 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:35:30.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:30 smithi046 bash[16275]: audit 2024-02-23T00:35:30.115354+0000 mon.smithi046 (mon.0) 712 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.mkfsov"}]: dispatch 2024-02-23T00:35:30.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:30 smithi142 bash[20802]: audit 2024-02-23T00:35:29.211394+0000 mon.smithi046 (mon.0) 709 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-23T00:35:30.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:30 smithi142 bash[20802]: cluster 2024-02-23T00:35:29.211645+0000 mon.smithi046 (mon.0) 710 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-23T00:35:30.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:30 smithi142 bash[20802]: audit 2024-02-23T00:35:29.213869+0000 mon.smithi046 (mon.0) 711 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-23T00:35:30.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:30 smithi142 bash[20802]: audit 2024-02-23T00:35:30.115354+0000 mon.smithi046 (mon.0) 712 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.mkfsov"}]: dispatch 2024-02-23T00:35:31.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cephadm 2024-02-23T00:35:30.114088+0000 mgr.smithi046.lplrtl (mgr.14184) 299 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:35:31.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cephadm 2024-02-23T00:35:30.114643+0000 mgr.smithi046.lplrtl (mgr.14184) 300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cephadm 2024-02-23T00:35:30.116948+0000 mgr.smithi046.lplrtl (mgr.14184) 301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cephadm 2024-02-23T00:35:30.121385+0000 mgr.smithi046.lplrtl (mgr.14184) 302 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:31.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cephadm 2024-02-23T00:35:30.123053+0000 mgr.smithi046.lplrtl (mgr.14184) 303 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:31.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cluster 2024-02-23T00:35:30.124945+0000 mgr.smithi046.lplrtl (mgr.14184) 304 : cluster [DBG] pgmap v251: 193 pgs: 4 creating+peering, 9 unknown, 180 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 259 B/s wr, 4 op/s 2024-02-23T00:35:31.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cluster 2024-02-23T00:35:30.205411+0000 mon.smithi046 (mon.0) 713 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:31.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: audit 2024-02-23T00:35:30.212954+0000 mon.smithi046 (mon.0) 714 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:35:31.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:31 smithi046 bash[16275]: cluster 2024-02-23T00:35:30.213184+0000 mon.smithi046 (mon.0) 715 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-23T00:35:31.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cephadm 2024-02-23T00:35:30.114088+0000 mgr.smithi046.lplrtl (mgr.14184) 299 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:35:31.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cephadm 2024-02-23T00:35:30.114643+0000 mgr.smithi046.lplrtl (mgr.14184) 300 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cephadm 2024-02-23T00:35:30.116948+0000 mgr.smithi046.lplrtl (mgr.14184) 301 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.mkfsov ... 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cephadm 2024-02-23T00:35:30.121385+0000 mgr.smithi046.lplrtl (mgr.14184) 302 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cephadm 2024-02-23T00:35:30.123053+0000 mgr.smithi046.lplrtl (mgr.14184) 303 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cluster 2024-02-23T00:35:30.124945+0000 mgr.smithi046.lplrtl (mgr.14184) 304 : cluster [DBG] pgmap v251: 193 pgs: 4 creating+peering, 9 unknown, 180 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 259 B/s wr, 4 op/s 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cluster 2024-02-23T00:35:30.205411+0000 mon.smithi046 (mon.0) 713 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: audit 2024-02-23T00:35:30.212954+0000 mon.smithi046 (mon.0) 714 : audit [INF] from='client.? 172.21.15.46:0/300065902' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-23T00:35:31.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:31 smithi142 bash[20802]: cluster 2024-02-23T00:35:30.213184+0000 mon.smithi046 (mon.0) 715 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-23T00:35:32.316 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-23T00:35:32.326 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T00:35:32.326 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-23T00:35:32.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:32 smithi142 bash[20802]: cluster 2024-02-23T00:35:31.236171+0000 mon.smithi046 (mon.0) 716 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-23T00:35:32.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:32 smithi142 bash[20802]: audit 2024-02-23T00:35:31.239527+0000 mon.smithi046 (mon.0) 717 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-23T00:35:32.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:32 smithi046 bash[16275]: cluster 2024-02-23T00:35:31.236171+0000 mon.smithi046 (mon.0) 716 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-23T00:35:32.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:32 smithi046 bash[16275]: audit 2024-02-23T00:35:31.239527+0000 mon.smithi046 (mon.0) 717 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-23T00:35:33.597 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:33 smithi046 bash[16275]: cluster 2024-02-23T00:35:32.126432+0000 mgr.smithi046.lplrtl (mgr.14184) 305 : cluster [DBG] pgmap v254: 225 pgs: 12 creating+peering, 27 unknown, 186 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 260 B/s wr, 2 op/s 2024-02-23T00:35:33.598 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:33 smithi046 bash[16275]: audit 2024-02-23T00:35:32.248910+0000 mon.smithi046 (mon.0) 718 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-23T00:35:33.598 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:33 smithi046 bash[16275]: cluster 2024-02-23T00:35:32.249175+0000 mon.smithi046 (mon.0) 719 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-23T00:35:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:33 smithi142 bash[20802]: cluster 2024-02-23T00:35:32.126432+0000 mgr.smithi046.lplrtl (mgr.14184) 305 : cluster [DBG] pgmap v254: 225 pgs: 12 creating+peering, 27 unknown, 186 active+clean; 5.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 260 B/s wr, 2 op/s 2024-02-23T00:35:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:33 smithi142 bash[20802]: audit 2024-02-23T00:35:32.248910+0000 mon.smithi046 (mon.0) 718 : audit [INF] from='client.? 172.21.15.46:0/1059319959' entity='client.rgw.foorgw.smithi046.rywsyx' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-23T00:35:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:33 smithi142 bash[20802]: cluster 2024-02-23T00:35:32.249175+0000 mon.smithi046 (mon.0) 719 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-23T00:35:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:34 smithi046 bash[16275]: cluster 2024-02-23T00:35:33.254570+0000 mon.smithi046 (mon.0) 720 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-23T00:35:34.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:34 smithi046 bash[16275]: audit 2024-02-23T00:35:33.341515+0000 mon.smithi046 (mon.0) 721 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:34.757 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:34 smithi142 bash[20802]: cluster 2024-02-23T00:35:33.254570+0000 mon.smithi046 (mon.0) 720 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-23T00:35:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:34 smithi142 bash[20802]: audit 2024-02-23T00:35:33.341515+0000 mon.smithi046 (mon.0) 721 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:35.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:35 smithi046 bash[16275]: cluster 2024-02-23T00:35:34.127787+0000 mgr.smithi046.lplrtl (mgr.14184) 306 : cluster [DBG] pgmap v257: 225 pgs: 8 creating+peering, 13 unknown, 204 active+clean; 5.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1.2 KiB/s wr, 7 op/s 2024-02-23T00:35:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:35 smithi142 bash[20802]: cluster 2024-02-23T00:35:34.127787+0000 mgr.smithi046.lplrtl (mgr.14184) 306 : cluster [DBG] pgmap v257: 225 pgs: 8 creating+peering, 13 unknown, 204 active+clean; 5.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1.2 KiB/s wr, 7 op/s 2024-02-23T00:35:35.981 INFO:teuthology.orchestra.run.smithi046.stdout:{ 2024-02-23T00:35:35.981 INFO:teuthology.orchestra.run.smithi046.stdout: "bind": "/foouser", 2024-02-23T00:35:35.982 INFO:teuthology.orchestra.run.smithi046.stdout: "path": "/", 2024-02-23T00:35:35.982 INFO:teuthology.orchestra.run.smithi046.stdout: "cluster": "foo", 2024-02-23T00:35:35.982 INFO:teuthology.orchestra.run.smithi046.stdout: "mode": "RW", 2024-02-23T00:35:35.982 INFO:teuthology.orchestra.run.smithi046.stdout: "squash": "none" 2024-02-23T00:35:35.982 INFO:teuthology.orchestra.run.smithi046.stdout:} 2024-02-23T00:35:36.627 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-23T00:35:36.637 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-23T00:35:36.638 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:37.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:37 smithi046 bash[16275]: audit 2024-02-23T00:35:35.773600+0000 mgr.smithi046.lplrtl (mgr.14184) 307 : audit [DBG] from='client.14614 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:35:37.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:37 smithi046 bash[16275]: cluster 2024-02-23T00:35:36.129186+0000 mgr.smithi046.lplrtl (mgr.14184) 308 : cluster [DBG] pgmap v258: 225 pgs: 8 creating+peering, 217 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1.4 KiB/s wr, 6 op/s 2024-02-23T00:35:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:37 smithi142 bash[20802]: audit 2024-02-23T00:35:35.773600+0000 mgr.smithi046.lplrtl (mgr.14184) 307 : audit [DBG] from='client.14614 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-23T00:35:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:37 smithi142 bash[20802]: cluster 2024-02-23T00:35:36.129186+0000 mgr.smithi046.lplrtl (mgr.14184) 308 : cluster [DBG] pgmap v258: 225 pgs: 8 creating+peering, 217 active+clean; 7.1 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.0 KiB/s rd, 1.4 KiB/s wr, 6 op/s 2024-02-23T00:35:39.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:39 smithi046 bash[16275]: cluster 2024-02-23T00:35:38.130941+0000 mgr.smithi046.lplrtl (mgr.14184) 309 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 1.3 KiB/s wr, 11 op/s 2024-02-23T00:35:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:39 smithi142 bash[20802]: cluster 2024-02-23T00:35:38.130941+0000 mgr.smithi046.lplrtl (mgr.14184) 309 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 1.3 KiB/s wr, 11 op/s 2024-02-23T00:35:39.789 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:35:39.789 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:35:40.399 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-23T00:35:40.399 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-23T00:35:40.411 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-23T00:35:40.412 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:41.670 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:41 smithi046 bash[16275]: audit 2024-02-23T00:35:39.777916+0000 mgr.smithi046.lplrtl (mgr.14184) 310 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:41.670 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:41 smithi046 bash[16275]: cluster 2024-02-23T00:35:40.133043+0000 mgr.smithi046.lplrtl (mgr.14184) 311 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.2 KiB/s wr, 20 op/s 2024-02-23T00:35:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:41 smithi142 bash[20802]: audit 2024-02-23T00:35:39.777916+0000 mgr.smithi046.lplrtl (mgr.14184) 310 : audit [DBG] from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:41 smithi142 bash[20802]: cluster 2024-02-23T00:35:40.133043+0000 mgr.smithi046.lplrtl (mgr.14184) 311 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.2 KiB/s wr, 20 op/s 2024-02-23T00:35:43.363 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:35:43.363 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:35:43.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:43 smithi046 bash[16275]: cluster 2024-02-23T00:35:42.134373+0000 mgr.smithi046.lplrtl (mgr.14184) 312 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.5 KiB/s rd, 1.0 KiB/s wr, 16 op/s 2024-02-23T00:35:43.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:43 smithi142 bash[20802]: cluster 2024-02-23T00:35:42.134373+0000 mgr.smithi046.lplrtl (mgr.14184) 312 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.5 KiB/s rd, 1.0 KiB/s wr, 16 op/s 2024-02-23T00:35:43.968 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:35:44.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:44 smithi046 bash[16275]: audit 2024-02-23T00:35:43.350007+0000 mgr.smithi046.lplrtl (mgr.14184) 313 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:44.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:44 smithi046 bash[16275]: audit 2024-02-23T00:35:43.364700+0000 mon.smithi046 (mon.0) 722 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:44.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:44 smithi142 bash[20802]: audit 2024-02-23T00:35:43.350007+0000 mgr.smithi046.lplrtl (mgr.14184) 313 : audit [DBG] from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:44.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:44 smithi142 bash[20802]: audit 2024-02-23T00:35:43.364700+0000 mon.smithi046 (mon.0) 722 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:35:44.970 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:45.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:45 smithi046 bash[16275]: cluster 2024-02-23T00:35:44.135866+0000 mgr.smithi046.lplrtl (mgr.14184) 314 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.5 KiB/s rd, 752 B/s wr, 14 op/s 2024-02-23T00:35:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:45 smithi142 bash[20802]: cluster 2024-02-23T00:35:44.135866+0000 mgr.smithi046.lplrtl (mgr.14184) 314 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.5 KiB/s rd, 752 B/s wr, 14 op/s 2024-02-23T00:35:47.673 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:47 smithi046 bash[16275]: cluster 2024-02-23T00:35:46.137346+0000 mgr.smithi046.lplrtl (mgr.14184) 315 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 426 B/s wr, 11 op/s 2024-02-23T00:35:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:47 smithi142 bash[20802]: cluster 2024-02-23T00:35:46.137346+0000 mgr.smithi046.lplrtl (mgr.14184) 315 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 426 B/s wr, 11 op/s 2024-02-23T00:35:48.117 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:35:48.118 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:35:48.708 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:35:49.710 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:49.722 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:49 smithi046 bash[16275]: audit 2024-02-23T00:35:48.103114+0000 mgr.smithi046.lplrtl (mgr.14184) 316 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:49.723 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:49 smithi046 bash[16275]: cluster 2024-02-23T00:35:48.138650+0000 mgr.smithi046.lplrtl (mgr.14184) 317 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-23T00:35:49.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:49 smithi142 bash[20802]: audit 2024-02-23T00:35:48.103114+0000 mgr.smithi046.lplrtl (mgr.14184) 316 : audit [DBG] from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:49.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:49 smithi142 bash[20802]: cluster 2024-02-23T00:35:48.138650+0000 mgr.smithi046.lplrtl (mgr.14184) 317 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.3 KiB/s rd, 170 B/s wr, 10 op/s 2024-02-23T00:35:51.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:51 smithi046 bash[16275]: cluster 2024-02-23T00:35:50.140729+0000 mgr.smithi046.lplrtl (mgr.14184) 318 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.0 KiB/s rd, 85 B/s wr, 7 op/s 2024-02-23T00:35:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:51 smithi142 bash[20802]: cluster 2024-02-23T00:35:50.140729+0000 mgr.smithi046.lplrtl (mgr.14184) 318 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.0 KiB/s rd, 85 B/s wr, 7 op/s 2024-02-23T00:35:52.886 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:35:52.886 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:35:53.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:35:53.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:53 smithi046 bash[16275]: cluster 2024-02-23T00:35:52.142130+0000 mgr.smithi046.lplrtl (mgr.14184) 319 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:53.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:53 smithi142 bash[20802]: cluster 2024-02-23T00:35:52.142130+0000 mgr.smithi046.lplrtl (mgr.14184) 319 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:54.453 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:54.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:54 smithi046 bash[16275]: audit 2024-02-23T00:35:52.869656+0000 mgr.smithi046.lplrtl (mgr.14184) 320 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:54.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:54 smithi142 bash[20802]: audit 2024-02-23T00:35:52.869656+0000 mgr.smithi046.lplrtl (mgr.14184) 320 : audit [DBG] from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:55.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:55 smithi046 bash[16275]: cluster 2024-02-23T00:35:54.143564+0000 mgr.smithi046.lplrtl (mgr.14184) 321 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:55 smithi142 bash[20802]: cluster 2024-02-23T00:35:54.143564+0000 mgr.smithi046.lplrtl (mgr.14184) 321 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:57.542 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:35:57.542 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:35:57.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:57 smithi046 bash[16275]: cluster 2024-02-23T00:35:56.145021+0000 mgr.smithi046.lplrtl (mgr.14184) 322 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:57.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:57 smithi142 bash[20802]: cluster 2024-02-23T00:35:56.145021+0000 mgr.smithi046.lplrtl (mgr.14184) 322 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:58.115 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:35:58.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:58 smithi046 bash[16275]: audit 2024-02-23T00:35:57.525752+0000 mgr.smithi046.lplrtl (mgr.14184) 323 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:58.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:58 smithi142 bash[20802]: audit 2024-02-23T00:35:57.525752+0000 mgr.smithi046.lplrtl (mgr.14184) 323 : audit [DBG] from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:35:59.116 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:35:59.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:35:59 smithi046 bash[16275]: cluster 2024-02-23T00:35:58.146606+0000 mgr.smithi046.lplrtl (mgr.14184) 324 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:35:59.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:35:59 smithi142 bash[20802]: cluster 2024-02-23T00:35:58.146606+0000 mgr.smithi046.lplrtl (mgr.14184) 324 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:01.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:01 smithi046 bash[16275]: cluster 2024-02-23T00:36:00.147925+0000 mgr.smithi046.lplrtl (mgr.14184) 325 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:01 smithi142 bash[20802]: cluster 2024-02-23T00:36:00.147925+0000 mgr.smithi046.lplrtl (mgr.14184) 325 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:02.453 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:02.453 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:03.017 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:03.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:03 smithi046 bash[16275]: cluster 2024-02-23T00:36:02.149143+0000 mgr.smithi046.lplrtl (mgr.14184) 326 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:03.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:03 smithi046 bash[16275]: audit 2024-02-23T00:36:02.442272+0000 mgr.smithi046.lplrtl (mgr.14184) 327 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:03 smithi142 bash[20802]: cluster 2024-02-23T00:36:02.149143+0000 mgr.smithi046.lplrtl (mgr.14184) 326 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:03 smithi142 bash[20802]: audit 2024-02-23T00:36:02.442272+0000 mgr.smithi046.lplrtl (mgr.14184) 327 : audit [DBG] from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:04.019 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:05.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:05 smithi046 bash[16275]: cluster 2024-02-23T00:36:04.150527+0000 mgr.smithi046.lplrtl (mgr.14184) 328 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:05 smithi142 bash[20802]: cluster 2024-02-23T00:36:04.150527+0000 mgr.smithi046.lplrtl (mgr.14184) 328 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:07.160 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:07.160 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:07.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:07 smithi046 bash[16275]: cluster 2024-02-23T00:36:06.152532+0000 mgr.smithi046.lplrtl (mgr.14184) 329 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:07.747 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:07 smithi142 bash[20802]: cluster 2024-02-23T00:36:06.152532+0000 mgr.smithi046.lplrtl (mgr.14184) 329 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:08.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:08 smithi046 bash[16275]: audit 2024-02-23T00:36:07.142963+0000 mgr.smithi046.lplrtl (mgr.14184) 330 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:08.749 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:08.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:08 smithi142 bash[20802]: audit 2024-02-23T00:36:07.142963+0000 mgr.smithi046.lplrtl (mgr.14184) 330 : audit [DBG] from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:09.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:09 smithi046 bash[16275]: cluster 2024-02-23T00:36:08.154544+0000 mgr.smithi046.lplrtl (mgr.14184) 331 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:09 smithi142 bash[20802]: cluster 2024-02-23T00:36:08.154544+0000 mgr.smithi046.lplrtl (mgr.14184) 331 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:11.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:11 smithi046 bash[16275]: cluster 2024-02-23T00:36:10.155788+0000 mgr.smithi046.lplrtl (mgr.14184) 332 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:11.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:11 smithi142 bash[20802]: cluster 2024-02-23T00:36:10.155788+0000 mgr.smithi046.lplrtl (mgr.14184) 332 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-02-23T00:36:11.834 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:11.834 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:12.433 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:13.434 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:13 smithi046 bash[16275]: audit 2024-02-23T00:36:11.821675+0000 mgr.smithi046.lplrtl (mgr.14184) 333 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:13.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:13 smithi046 bash[16275]: cluster 2024-02-23T00:36:12.157219+0000 mgr.smithi046.lplrtl (mgr.14184) 334 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:13.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:13 smithi142 bash[20802]: audit 2024-02-23T00:36:11.821675+0000 mgr.smithi046.lplrtl (mgr.14184) 333 : audit [DBG] from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:13.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:13 smithi142 bash[20802]: cluster 2024-02-23T00:36:12.157219+0000 mgr.smithi046.lplrtl (mgr.14184) 334 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:15.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:15 smithi142 bash[20802]: cluster 2024-02-23T00:36:14.158693+0000 mgr.smithi046.lplrtl (mgr.14184) 335 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:15.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:15 smithi046 bash[16275]: cluster 2024-02-23T00:36:14.158693+0000 mgr.smithi046.lplrtl (mgr.14184) 335 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:16.572 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:16.573 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:17.135 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:17.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:17 smithi142 bash[20802]: cluster 2024-02-23T00:36:16.160772+0000 mgr.smithi046.lplrtl (mgr.14184) 336 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:17.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:17 smithi046 bash[16275]: cluster 2024-02-23T00:36:16.160772+0000 mgr.smithi046.lplrtl (mgr.14184) 336 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:18.136 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:18.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:18 smithi046 bash[16275]: audit 2024-02-23T00:36:16.560346+0000 mgr.smithi046.lplrtl (mgr.14184) 337 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:18 smithi142 bash[20802]: audit 2024-02-23T00:36:16.560346+0000 mgr.smithi046.lplrtl (mgr.14184) 337 : audit [DBG] from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:19.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:19 smithi046 bash[16275]: cluster 2024-02-23T00:36:18.162073+0000 mgr.smithi046.lplrtl (mgr.14184) 338 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:19 smithi142 bash[20802]: cluster 2024-02-23T00:36:18.162073+0000 mgr.smithi046.lplrtl (mgr.14184) 338 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:21.256 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:21.256 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:21.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:21 smithi046 bash[16275]: cluster 2024-02-23T00:36:20.163482+0000 mgr.smithi046.lplrtl (mgr.14184) 339 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:36:21.868 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:21 smithi142 bash[20802]: cluster 2024-02-23T00:36:20.163482+0000 mgr.smithi046.lplrtl (mgr.14184) 339 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:36:22.869 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:22.881 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:22 smithi046 bash[16275]: audit 2024-02-23T00:36:21.239358+0000 mgr.smithi046.lplrtl (mgr.14184) 340 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:22 smithi142 bash[20802]: audit 2024-02-23T00:36:21.239358+0000 mgr.smithi046.lplrtl (mgr.14184) 340 : audit [DBG] from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:23.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:23 smithi046 bash[16275]: cluster 2024-02-23T00:36:22.164930+0000 mgr.smithi046.lplrtl (mgr.14184) 341 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:23 smithi142 bash[20802]: cluster 2024-02-23T00:36:22.164930+0000 mgr.smithi046.lplrtl (mgr.14184) 341 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:25.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:25 smithi046 bash[16275]: cluster 2024-02-23T00:36:24.166388+0000 mgr.smithi046.lplrtl (mgr.14184) 342 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:25.992 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:25.993 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:25 smithi142 bash[20802]: cluster 2024-02-23T00:36:24.166388+0000 mgr.smithi046.lplrtl (mgr.14184) 342 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:26.618 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:27.619 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:27.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:27 smithi046 bash[16275]: audit 2024-02-23T00:36:25.978701+0000 mgr.smithi046.lplrtl (mgr.14184) 343 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:27.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:27 smithi046 bash[16275]: cluster 2024-02-23T00:36:26.167974+0000 mgr.smithi046.lplrtl (mgr.14184) 344 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:27 smithi142 bash[20802]: audit 2024-02-23T00:36:25.978701+0000 mgr.smithi046.lplrtl (mgr.14184) 343 : audit [DBG] from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:27 smithi142 bash[20802]: cluster 2024-02-23T00:36:26.167974+0000 mgr.smithi046.lplrtl (mgr.14184) 344 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:29.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:29 smithi046 bash[16275]: cluster 2024-02-23T00:36:28.169045+0000 mgr.smithi046.lplrtl (mgr.14184) 345 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:29 smithi142 bash[20802]: cluster 2024-02-23T00:36:28.169045+0000 mgr.smithi046.lplrtl (mgr.14184) 345 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:30.682 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:30.682 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:30.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:30 smithi142 bash[20802]: audit 2024-02-23T00:36:30.126576+0000 mon.smithi046 (mon.0) 723 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:36:30.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:30 smithi046 bash[16275]: audit 2024-02-23T00:36:30.126576+0000 mon.smithi046 (mon.0) 723 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:36:31.327 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:31.736 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:31 smithi046 bash[16275]: cluster 2024-02-23T00:36:30.170805+0000 mgr.smithi046.lplrtl (mgr.14184) 346 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:36:31.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:31 smithi046 bash[16275]: audit 2024-02-23T00:36:30.667718+0000 mgr.smithi046.lplrtl (mgr.14184) 347 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:32.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:31 smithi142 bash[20802]: cluster 2024-02-23T00:36:30.170805+0000 mgr.smithi046.lplrtl (mgr.14184) 346 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:36:32.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:31 smithi142 bash[20802]: audit 2024-02-23T00:36:30.667718+0000 mgr.smithi046.lplrtl (mgr.14184) 347 : audit [DBG] from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:32.328 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:32.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:32 smithi046 bash[16275]: cluster 2024-02-23T00:36:32.172267+0000 mgr.smithi046.lplrtl (mgr.14184) 348 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:32 smithi142 bash[20802]: cluster 2024-02-23T00:36:32.172267+0000 mgr.smithi046.lplrtl (mgr.14184) 348 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:35.410 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:35.410 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:35:21.918640Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:35:21.531072Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:35:21.919085Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:35:21.531624Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:35:21.531906Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:35:21.920452Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:35:21.532225Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:35:21.532787Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:35:21.532531Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:35:21.533796Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:35.504 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:35 smithi046 bash[16275]: cluster 2024-02-23T00:36:34.173265+0000 mgr.smithi046.lplrtl (mgr.14184) 349 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:35.504 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:35 smithi046 bash[16275]: audit 2024-02-23T00:36:35.117611+0000 mon.smithi046 (mon.0) 724 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.e", "id": [4, 0]}]: dispatch 2024-02-23T00:36:35.504 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:35 smithi046 bash[16275]: audit 2024-02-23T00:36:35.117975+0000 mon.smithi046 (mon.0) 725 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2024-02-23T00:36:35.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:35 smithi142 bash[20802]: cluster 2024-02-23T00:36:34.173265+0000 mgr.smithi046.lplrtl (mgr.14184) 349 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:35.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:35 smithi142 bash[20802]: audit 2024-02-23T00:36:35.117611+0000 mon.smithi046 (mon.0) 724 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.e", "id": [4, 0]}]: dispatch 2024-02-23T00:36:35.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:35 smithi142 bash[20802]: audit 2024-02-23T00:36:35.117975+0000 mon.smithi046 (mon.0) 725 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]: dispatch 2024-02-23T00:36:36.023 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:36.486 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: audit 2024-02-23T00:36:35.238780+0000 mon.smithi046 (mon.0) 726 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.e", "id": [4, 0]}]': finished 2024-02-23T00:36:36.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: audit 2024-02-23T00:36:35.242097+0000 mon.smithi046 (mon.0) 727 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-02-23T00:36:36.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: cluster 2024-02-23T00:36:35.242189+0000 mon.smithi046 (mon.0) 728 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-23T00:36:36.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: audit 2024-02-23T00:36:35.396254+0000 mgr.smithi046.lplrtl (mgr.14184) 350 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:36.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: audit 2024-02-23T00:36:36.043414+0000 mon.smithi046 (mon.0) 729 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:36.487 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:36 smithi046 bash[16275]: cluster 2024-02-23T00:36:36.240369+0000 mon.smithi046 (mon.0) 730 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-23T00:36:36.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: audit 2024-02-23T00:36:35.238780+0000 mon.smithi046 (mon.0) 726 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.e", "id": [4, 0]}]': finished 2024-02-23T00:36:36.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: audit 2024-02-23T00:36:35.242097+0000 mon.smithi046 (mon.0) 727 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-02-23T00:36:36.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: cluster 2024-02-23T00:36:35.242189+0000 mon.smithi046 (mon.0) 728 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-23T00:36:36.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: audit 2024-02-23T00:36:35.396254+0000 mgr.smithi046.lplrtl (mgr.14184) 350 : audit [DBG] from='client.14686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:36.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: audit 2024-02-23T00:36:36.043414+0000 mon.smithi046 (mon.0) 729 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:36.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:36 smithi142 bash[20802]: cluster 2024-02-23T00:36:36.240369+0000 mon.smithi046 (mon.0) 730 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-23T00:36:37.024 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: cluster 2024-02-23T00:36:36.174097+0000 mgr.smithi046.lplrtl (mgr.14184) 351 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.481019+0000 mon.smithi046 (mon.0) 731 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.788331+0000 mon.smithi046 (mon.0) 732 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.790074+0000 mon.smithi046 (mon.0) 733 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.798594+0000 mon.smithi046 (mon.0) 734 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.806135+0000 mon.smithi046 (mon.0) 735 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: audit 2024-02-23T00:36:36.822316+0000 mon.smithi046 (mon.0) 736 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: cluster 2024-02-23T00:36:37.039067+0000 mon.smithi046 (mon.0) 737 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:36:37.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:37 smithi046 bash[16275]: cluster 2024-02-23T00:36:37.039178+0000 mon.smithi046 (mon.0) 738 : cluster [INF] Cluster is now healthy 2024-02-23T00:36:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: cluster 2024-02-23T00:36:36.174097+0000 mgr.smithi046.lplrtl (mgr.14184) 351 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:36:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.481019+0000 mon.smithi046 (mon.0) 731 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.788331+0000 mon.smithi046 (mon.0) 732 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.790074+0000 mon.smithi046 (mon.0) 733 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.798594+0000 mon.smithi046 (mon.0) 734 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.806135+0000 mon.smithi046 (mon.0) 735 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: audit 2024-02-23T00:36:36.822316+0000 mon.smithi046 (mon.0) 736 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: cluster 2024-02-23T00:36:37.039067+0000 mon.smithi046 (mon.0) 737 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:36:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:37 smithi142 bash[20802]: cluster 2024-02-23T00:36:37.039178+0000 mon.smithi046 (mon.0) 738 : cluster [INF] Cluster is now healthy 2024-02-23T00:36:38.527 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:38 smithi046 bash[16275]: cluster 2024-02-23T00:36:36.799873+0000 mgr.smithi046.lplrtl (mgr.14184) 352 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:36:38.527 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:38 smithi046 bash[16275]: cephadm 2024-02-23T00:36:36.826544+0000 mgr.smithi046.lplrtl (mgr.14184) 353 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.padblz on smithi142 2024-02-23T00:36:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:38 smithi142 bash[20802]: cluster 2024-02-23T00:36:36.799873+0000 mgr.smithi046.lplrtl (mgr.14184) 352 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:36:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:38 smithi142 bash[20802]: cephadm 2024-02-23T00:36:36.826544+0000 mgr.smithi046.lplrtl (mgr.14184) 353 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.padblz on smithi142 2024-02-23T00:36:40.220 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:40.221 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:15.654792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.qvsmpv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:26.129204Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.bshtty on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-bshtty\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.bshtty\nDeploy daemon haproxy.nfs.foo.smithi142.bshtty ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.116668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.mkfsov on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-mkfsov\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.mkfsov\nDeploy daemon haproxy.nfs.foo.smithi046.mkfsov ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:35:30.121174Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nqmncu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:40.557 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:40 smithi046 bash[16275]: cluster 2024-02-23T00:36:38.801048+0000 mgr.smithi046.lplrtl (mgr.14184) 354 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:36:40.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:40 smithi142 bash[20802]: cluster 2024-02-23T00:36:38.801048+0000 mgr.smithi046.lplrtl (mgr.14184) 354 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-23T00:36:40.774 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:41 smithi142 bash[20802]: audit 2024-02-23T00:36:40.211458+0000 mgr.smithi046.lplrtl (mgr.14184) 355 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:41 smithi142 bash[20802]: audit 2024-02-23T00:36:40.643806+0000 mon.smithi046 (mon.0) 739 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.padblz"}]: dispatch 2024-02-23T00:36:41.775 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:41.788 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:41 smithi046 bash[16275]: audit 2024-02-23T00:36:40.211458+0000 mgr.smithi046.lplrtl (mgr.14184) 355 : audit [DBG] from='client.14690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:41.788 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:41 smithi046 bash[16275]: audit 2024-02-23T00:36:40.643806+0000 mon.smithi046 (mon.0) 739 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.padblz"}]: dispatch 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: cephadm 2024-02-23T00:36:40.642905+0000 mgr.smithi046.lplrtl (mgr.14184) 356 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: cephadm 2024-02-23T00:36:40.643338+0000 mgr.smithi046.lplrtl (mgr.14184) 357 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: cephadm 2024-02-23T00:36:40.644909+0000 mgr.smithi046.lplrtl (mgr.14184) 358 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: cephadm 2024-02-23T00:36:40.647269+0000 mgr.smithi046.lplrtl (mgr.14184) 359 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.qbfvjr on smithi046 2024-02-23T00:36:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:42 smithi142 bash[20802]: cluster 2024-02-23T00:36:40.802664+0000 mgr.smithi046.lplrtl (mgr.14184) 360 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 154 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: cephadm 2024-02-23T00:36:40.642905+0000 mgr.smithi046.lplrtl (mgr.14184) 356 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.835 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: cephadm 2024-02-23T00:36:40.643338+0000 mgr.smithi046.lplrtl (mgr.14184) 357 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: cephadm 2024-02-23T00:36:40.644909+0000 mgr.smithi046.lplrtl (mgr.14184) 358 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.padblz ... 2024-02-23T00:36:42.836 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: cephadm 2024-02-23T00:36:40.647269+0000 mgr.smithi046.lplrtl (mgr.14184) 359 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.qbfvjr on smithi046 2024-02-23T00:36:42.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:42 smithi046 bash[16275]: cluster 2024-02-23T00:36:40.802664+0000 mgr.smithi046.lplrtl (mgr.14184) 360 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 154 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:44.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:44 smithi046 bash[16275]: cluster 2024-02-23T00:36:42.804055+0000 mgr.smithi046.lplrtl (mgr.14184) 361 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 135 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:44.908 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:44.908 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:44 smithi142 bash[20802]: cluster 2024-02-23T00:36:42.804055+0000 mgr.smithi046.lplrtl (mgr.14184) 361 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 135 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:45.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:45.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cephadm 2024-02-23T00:36:44.507677+0000 mgr.smithi046.lplrtl (mgr.14184) 362 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:36:45.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cephadm 2024-02-23T00:36:44.508135+0000 mgr.smithi046.lplrtl (mgr.14184) 363 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: audit 2024-02-23T00:36:44.514062+0000 mon.smithi046 (mon.0) 740 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.qbfvjr"}]: dispatch 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cephadm 2024-02-23T00:36:44.516443+0000 mgr.smithi046.lplrtl (mgr.14184) 364 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:36:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:45.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cephadm 2024-02-23T00:36:44.519397+0000 mgr.smithi046.lplrtl (mgr.14184) 365 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cephadm 2024-02-23T00:36:44.521860+0000 mgr.smithi046.lplrtl (mgr.14184) 366 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:36:45.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:45 smithi046 bash[16275]: cluster 2024-02-23T00:36:44.523925+0000 mgr.smithi046.lplrtl (mgr.14184) 367 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 122 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cephadm 2024-02-23T00:36:44.507677+0000 mgr.smithi046.lplrtl (mgr.14184) 362 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cephadm 2024-02-23T00:36:44.508135+0000 mgr.smithi046.lplrtl (mgr.14184) 363 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: audit 2024-02-23T00:36:44.514062+0000 mon.smithi046 (mon.0) 740 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.qbfvjr"}]: dispatch 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cephadm 2024-02-23T00:36:44.516443+0000 mgr.smithi046.lplrtl (mgr.14184) 364 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.qbfvjr ... 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:36:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:36:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:36:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:36:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cephadm 2024-02-23T00:36:44.519397+0000 mgr.smithi046.lplrtl (mgr.14184) 365 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:36:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cephadm 2024-02-23T00:36:44.521860+0000 mgr.smithi046.lplrtl (mgr.14184) 366 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:36:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:45 smithi142 bash[20802]: cluster 2024-02-23T00:36:44.523925+0000 mgr.smithi046.lplrtl (mgr.14184) 367 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 122 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:46.534 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:46.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:46 smithi046 bash[16275]: audit 2024-02-23T00:36:44.896504+0000 mgr.smithi046.lplrtl (mgr.14184) 368 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:46.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:46 smithi046 bash[16275]: cluster 2024-02-23T00:36:45.508797+0000 mon.smithi046 (mon.0) 741 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:36:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:46 smithi142 bash[20802]: audit 2024-02-23T00:36:44.896504+0000 mgr.smithi046.lplrtl (mgr.14184) 368 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:46 smithi142 bash[20802]: cluster 2024-02-23T00:36:45.508797+0000 mon.smithi046 (mon.0) 741 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:36:47.876 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:47 smithi046 bash[16275]: cluster 2024-02-23T00:36:46.524812+0000 mgr.smithi046.lplrtl (mgr.14184) 369 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:47 smithi142 bash[20802]: cluster 2024-02-23T00:36:46.524812+0000 mgr.smithi046.lplrtl (mgr.14184) 369 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:49.539 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:49.539 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:49.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:49 smithi046 bash[16275]: audit 2024-02-23T00:36:48.426514+0000 mon.smithi046 (mon.0) 742 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:49.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:49 smithi046 bash[16275]: cluster 2024-02-23T00:36:48.526437+0000 mgr.smithi046.lplrtl (mgr.14184) 370 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:49.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:49 smithi142 bash[20802]: audit 2024-02-23T00:36:48.426514+0000 mon.smithi046 (mon.0) 742 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:36:49.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:49 smithi142 bash[20802]: cluster 2024-02-23T00:36:48.526437+0000 mgr.smithi046.lplrtl (mgr.14184) 370 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:50.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:50.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:50 smithi046 bash[16275]: audit 2024-02-23T00:36:49.523605+0000 mgr.smithi046.lplrtl (mgr.14184) 371 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:50.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:50 smithi142 bash[20802]: audit 2024-02-23T00:36:49.523605+0000 mgr.smithi046.lplrtl (mgr.14184) 371 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:51.124 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:51.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:51 smithi046 bash[16275]: cluster 2024-02-23T00:36:50.528423+0000 mgr.smithi046.lplrtl (mgr.14184) 372 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:51 smithi142 bash[20802]: cluster 2024-02-23T00:36:50.528423+0000 mgr.smithi046.lplrtl (mgr.14184) 372 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2024-02-23T00:36:52.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:52 smithi046 bash[16275]: cluster 2024-02-23T00:36:52.530084+0000 mgr.smithi046.lplrtl (mgr.14184) 373 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:36:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:52 smithi142 bash[20802]: cluster 2024-02-23T00:36:52.530084+0000 mgr.smithi046.lplrtl (mgr.14184) 373 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:36:54.113 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:54.113 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:54.706 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:54.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:54 smithi046 bash[16275]: audit 2024-02-23T00:36:54.098332+0000 mgr.smithi046.lplrtl (mgr.14184) 374 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:54.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:54 smithi046 bash[16275]: cluster 2024-02-23T00:36:54.531921+0000 mgr.smithi046.lplrtl (mgr.14184) 375 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:36:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:54 smithi142 bash[20802]: audit 2024-02-23T00:36:54.098332+0000 mgr.smithi046.lplrtl (mgr.14184) 374 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:36:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:54 smithi142 bash[20802]: cluster 2024-02-23T00:36:54.531921+0000 mgr.smithi046.lplrtl (mgr.14184) 375 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:36:55.707 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:36:56.911 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:56 smithi046 bash[16275]: cluster 2024-02-23T00:36:56.532810+0000 mgr.smithi046.lplrtl (mgr.14184) 376 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:56 smithi142 bash[20802]: cluster 2024-02-23T00:36:56.532810+0000 mgr.smithi046.lplrtl (mgr.14184) 376 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:58.738 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:36:58.739 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:36:58.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:58 smithi046 bash[16275]: cluster 2024-02-23T00:36:58.534211+0000 mgr.smithi046.lplrtl (mgr.14184) 377 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:58 smithi142 bash[20802]: cluster 2024-02-23T00:36:58.534211+0000 mgr.smithi046.lplrtl (mgr.14184) 377 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:36:59.319 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:36:59.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:36:59 smithi046 bash[16275]: audit 2024-02-23T00:36:58.721488+0000 mgr.smithi046.lplrtl (mgr.14184) 378 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:00.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:36:59 smithi142 bash[20802]: audit 2024-02-23T00:36:58.721488+0000 mgr.smithi046.lplrtl (mgr.14184) 378 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:00.319 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:00.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:00 smithi046 bash[16275]: cluster 2024-02-23T00:37:00.535629+0000 mgr.smithi046.lplrtl (mgr.14184) 379 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:01.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:00 smithi142 bash[20802]: cluster 2024-02-23T00:37:00.535629+0000 mgr.smithi046.lplrtl (mgr.14184) 379 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:02.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:02 smithi046 bash[16275]: cluster 2024-02-23T00:37:02.537241+0000 mgr.smithi046.lplrtl (mgr.14184) 380 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:02 smithi142 bash[20802]: cluster 2024-02-23T00:37:02.537241+0000 mgr.smithi046.lplrtl (mgr.14184) 380 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:03.478 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:03.478 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:03.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:03 smithi046 bash[16275]: audit 2024-02-23T00:37:03.460882+0000 mgr.smithi046.lplrtl (mgr.14184) 381 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:04.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:03 smithi142 bash[20802]: audit 2024-02-23T00:37:03.460882+0000 mgr.smithi046.lplrtl (mgr.14184) 381 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:04.087 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:04.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:04 smithi046 bash[16275]: cluster 2024-02-23T00:37:04.539127+0000 mgr.smithi046.lplrtl (mgr.14184) 382 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:04 smithi142 bash[20802]: cluster 2024-02-23T00:37:04.539127+0000 mgr.smithi046.lplrtl (mgr.14184) 382 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:05.088 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:06.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:06 smithi046 bash[16275]: cluster 2024-02-23T00:37:06.539963+0000 mgr.smithi046.lplrtl (mgr.14184) 383 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:06 smithi142 bash[20802]: cluster 2024-02-23T00:37:06.539963+0000 mgr.smithi046.lplrtl (mgr.14184) 383 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:08.196 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:08.196 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:08.749 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:08.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:08 smithi046 bash[16275]: audit 2024-02-23T00:37:08.186313+0000 mgr.smithi046.lplrtl (mgr.14184) 384 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:08.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:08 smithi046 bash[16275]: cluster 2024-02-23T00:37:08.541604+0000 mgr.smithi046.lplrtl (mgr.14184) 385 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:08 smithi142 bash[20802]: audit 2024-02-23T00:37:08.186313+0000 mgr.smithi046.lplrtl (mgr.14184) 384 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:08 smithi142 bash[20802]: cluster 2024-02-23T00:37:08.541604+0000 mgr.smithi046.lplrtl (mgr.14184) 385 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:09.750 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:10.878 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:10 smithi046 bash[16275]: cluster 2024-02-23T00:37:10.543489+0000 mgr.smithi046.lplrtl (mgr.14184) 386 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:10 smithi142 bash[20802]: cluster 2024-02-23T00:37:10.543489+0000 mgr.smithi046.lplrtl (mgr.14184) 386 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:12.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:12 smithi046 bash[16275]: cluster 2024-02-23T00:37:12.545022+0000 mgr.smithi046.lplrtl (mgr.14184) 387 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:12.840 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:12.840 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:12 smithi142 bash[20802]: cluster 2024-02-23T00:37:12.545022+0000 mgr.smithi046.lplrtl (mgr.14184) 387 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:13.479 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:13.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:13 smithi046 bash[16275]: audit 2024-02-23T00:37:12.825803+0000 mgr.smithi046.lplrtl (mgr.14184) 388 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:13 smithi142 bash[20802]: audit 2024-02-23T00:37:12.825803+0000 mgr.smithi046.lplrtl (mgr.14184) 388 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:14.480 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:14.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:14 smithi046 bash[16275]: cluster 2024-02-23T00:37:14.546980+0000 mgr.smithi046.lplrtl (mgr.14184) 389 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:14 smithi142 bash[20802]: cluster 2024-02-23T00:37:14.546980+0000 mgr.smithi046.lplrtl (mgr.14184) 389 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:16.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:16 smithi046 bash[16275]: cluster 2024-02-23T00:37:16.547952+0000 mgr.smithi046.lplrtl (mgr.14184) 390 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:16 smithi142 bash[20802]: cluster 2024-02-23T00:37:16.547952+0000 mgr.smithi046.lplrtl (mgr.14184) 390 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:17.663 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:17.663 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:18.214 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:18.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:18 smithi046 bash[16275]: audit 2024-02-23T00:37:17.645687+0000 mgr.smithi046.lplrtl (mgr.14184) 391 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:18.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:18 smithi046 bash[16275]: cluster 2024-02-23T00:37:18.549616+0000 mgr.smithi046.lplrtl (mgr.14184) 392 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:18 smithi142 bash[20802]: audit 2024-02-23T00:37:17.645687+0000 mgr.smithi046.lplrtl (mgr.14184) 391 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:18 smithi142 bash[20802]: cluster 2024-02-23T00:37:18.549616+0000 mgr.smithi046.lplrtl (mgr.14184) 392 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:19.217 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:20.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:20 smithi046 bash[16275]: cluster 2024-02-23T00:37:20.551629+0000 mgr.smithi046.lplrtl (mgr.14184) 393 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:20 smithi142 bash[20802]: cluster 2024-02-23T00:37:20.551629+0000 mgr.smithi046.lplrtl (mgr.14184) 393 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:22.146 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:22.146 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:22.696 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:22.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:22 smithi046 bash[16275]: audit 2024-02-23T00:37:22.136184+0000 mgr.smithi046.lplrtl (mgr.14184) 394 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:22.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:22 smithi046 bash[16275]: cluster 2024-02-23T00:37:22.553166+0000 mgr.smithi046.lplrtl (mgr.14184) 395 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:22 smithi142 bash[20802]: audit 2024-02-23T00:37:22.136184+0000 mgr.smithi046.lplrtl (mgr.14184) 394 : audit [DBG] from='client.14726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:23.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:22 smithi142 bash[20802]: cluster 2024-02-23T00:37:22.553166+0000 mgr.smithi046.lplrtl (mgr.14184) 395 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:23.697 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:24.931 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:24 smithi046 bash[16275]: cluster 2024-02-23T00:37:24.554979+0000 mgr.smithi046.lplrtl (mgr.14184) 396 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:24 smithi142 bash[20802]: cluster 2024-02-23T00:37:24.554979+0000 mgr.smithi046.lplrtl (mgr.14184) 396 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:26.837 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:26.837 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:26.909 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:26 smithi046 bash[16275]: cluster 2024-02-23T00:37:26.555902+0000 mgr.smithi046.lplrtl (mgr.14184) 397 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:27.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:26 smithi142 bash[20802]: cluster 2024-02-23T00:37:26.555902+0000 mgr.smithi046.lplrtl (mgr.14184) 397 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:27.458 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:27.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:27 smithi046 bash[16275]: audit 2024-02-23T00:37:26.824176+0000 mgr.smithi046.lplrtl (mgr.14184) 398 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:27 smithi142 bash[20802]: audit 2024-02-23T00:37:26.824176+0000 mgr.smithi046.lplrtl (mgr.14184) 398 : audit [DBG] from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:28.459 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:28.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:28 smithi046 bash[16275]: cluster 2024-02-23T00:37:28.557585+0000 mgr.smithi046.lplrtl (mgr.14184) 399 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:28 smithi142 bash[20802]: cluster 2024-02-23T00:37:28.557585+0000 mgr.smithi046.lplrtl (mgr.14184) 399 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:30.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:30 smithi046 bash[16275]: cluster 2024-02-23T00:37:30.558636+0000 mgr.smithi046.lplrtl (mgr.14184) 400 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:31.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:30 smithi142 bash[20802]: cluster 2024-02-23T00:37:30.558636+0000 mgr.smithi046.lplrtl (mgr.14184) 400 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:31.580 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:31.580 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:32.157 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:32.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:32 smithi046 bash[16275]: audit 2024-02-23T00:37:31.563364+0000 mgr.smithi046.lplrtl (mgr.14184) 401 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:32.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:32 smithi046 bash[16275]: cluster 2024-02-23T00:37:32.560140+0000 mgr.smithi046.lplrtl (mgr.14184) 402 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:32 smithi142 bash[20802]: audit 2024-02-23T00:37:31.563364+0000 mgr.smithi046.lplrtl (mgr.14184) 401 : audit [DBG] from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:32 smithi142 bash[20802]: cluster 2024-02-23T00:37:32.560140+0000 mgr.smithi046.lplrtl (mgr.14184) 402 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:33.158 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:34.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:34 smithi046 bash[16275]: cluster 2024-02-23T00:37:34.561980+0000 mgr.smithi046.lplrtl (mgr.14184) 403 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:34 smithi142 bash[20802]: cluster 2024-02-23T00:37:34.561980+0000 mgr.smithi046.lplrtl (mgr.14184) 403 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:36.183 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:36.183 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:36.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:36.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:36 smithi046 bash[16275]: audit 2024-02-23T00:37:36.165508+0000 mgr.smithi046.lplrtl (mgr.14184) 404 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:37.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:36 smithi142 bash[20802]: audit 2024-02-23T00:37:36.165508+0000 mgr.smithi046.lplrtl (mgr.14184) 404 : audit [DBG] from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:37.784 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:37.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:37 smithi046 bash[16275]: cluster 2024-02-23T00:37:36.563304+0000 mgr.smithi046.lplrtl (mgr.14184) 405 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:38.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:37 smithi142 bash[20802]: cluster 2024-02-23T00:37:36.563304+0000 mgr.smithi046.lplrtl (mgr.14184) 405 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:37:39.987 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:39 smithi046 bash[16275]: cluster 2024-02-23T00:37:38.564997+0000 mgr.smithi046.lplrtl (mgr.14184) 406 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:40.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:39 smithi142 bash[20802]: cluster 2024-02-23T00:37:38.564997+0000 mgr.smithi046.lplrtl (mgr.14184) 406 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:37:40.833 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:40.833 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:41.421 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:41.737 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:41 smithi046 bash[16275]: cluster 2024-02-23T00:37:40.566754+0000 mgr.smithi046.lplrtl (mgr.14184) 407 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-02-23T00:37:41.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:41 smithi046 bash[16275]: audit 2024-02-23T00:37:40.816454+0000 mgr.smithi046.lplrtl (mgr.14184) 408 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:41 smithi142 bash[20802]: cluster 2024-02-23T00:37:40.566754+0000 mgr.smithi046.lplrtl (mgr.14184) 407 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2024-02-23T00:37:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:41 smithi142 bash[20802]: audit 2024-02-23T00:37:40.816454+0000 mgr.smithi046.lplrtl (mgr.14184) 408 : audit [DBG] from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:42.423 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:43.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:43 smithi046 bash[16275]: cluster 2024-02-23T00:37:42.568445+0000 mgr.smithi046.lplrtl (mgr.14184) 409 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:43 smithi142 bash[20802]: cluster 2024-02-23T00:37:42.568445+0000 mgr.smithi046.lplrtl (mgr.14184) 409 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:44.941 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:44 smithi046 bash[16275]: audit 2024-02-23T00:37:44.527335+0000 mon.smithi046 (mon.0) 743 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:37:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:44 smithi142 bash[20802]: audit 2024-02-23T00:37:44.527335+0000 mon.smithi046 (mon.0) 743 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:37:45.377 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:45.377 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:45.968 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:46.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:45 smithi046 bash[16275]: cluster 2024-02-23T00:37:44.570343+0000 mgr.smithi046.lplrtl (mgr.14184) 410 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:46.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:45 smithi046 bash[16275]: audit 2024-02-23T00:37:44.826236+0000 mon.smithi046 (mon.0) 744 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:46.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:45 smithi046 bash[16275]: audit 2024-02-23T00:37:45.367373+0000 mgr.smithi046.lplrtl (mgr.14184) 411 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:46.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:45 smithi142 bash[20802]: cluster 2024-02-23T00:37:44.570343+0000 mgr.smithi046.lplrtl (mgr.14184) 410 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:45 smithi142 bash[20802]: audit 2024-02-23T00:37:44.826236+0000 mon.smithi046 (mon.0) 744 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:45 smithi142 bash[20802]: audit 2024-02-23T00:37:45.367373+0000 mgr.smithi046.lplrtl (mgr.14184) 411 : audit [DBG] from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:46.969 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:48.231 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:47 smithi046 bash[16275]: cluster 2024-02-23T00:37:46.571833+0000 mgr.smithi046.lplrtl (mgr.14184) 412 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:48.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:47 smithi142 bash[20802]: cluster 2024-02-23T00:37:46.571833+0000 mgr.smithi046.lplrtl (mgr.14184) 412 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:49.873 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:49.873 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.028685Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.029064Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.029324Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.029563Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.030036Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:36:36.029800Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.031012Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:50.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:49 smithi046 bash[16275]: cluster 2024-02-23T00:37:48.573608+0000 mgr.smithi046.lplrtl (mgr.14184) 413 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:49 smithi142 bash[20802]: cluster 2024-02-23T00:37:48.573608+0000 mgr.smithi046.lplrtl (mgr.14184) 413 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:50.466 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:51.467 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:49.857720+0000 mgr.smithi046.lplrtl (mgr.14184) 414 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.437344+0000 mon.smithi046 (mon.0) 745 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.725868+0000 mon.smithi046 (mon.0) 746 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.727905+0000 mon.smithi046 (mon.0) 747 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.738269+0000 mon.smithi046 (mon.0) 748 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.748509+0000 mon.smithi046 (mon.0) 749 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:37:51.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:51 smithi046 bash[16275]: audit 2024-02-23T00:37:50.763498+0000 mon.smithi046 (mon.0) 750 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:49.857720+0000 mgr.smithi046.lplrtl (mgr.14184) 414 : audit [DBG] from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.437344+0000 mon.smithi046 (mon.0) 745 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.725868+0000 mon.smithi046 (mon.0) 746 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.727905+0000 mon.smithi046 (mon.0) 747 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.738269+0000 mon.smithi046 (mon.0) 748 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.748509+0000 mon.smithi046 (mon.0) 749 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:37:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:51 smithi142 bash[20802]: audit 2024-02-23T00:37:50.763498+0000 mon.smithi046 (mon.0) 750 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:37:52.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:52 smithi046 bash[16275]: cluster 2024-02-23T00:37:50.575402+0000 mgr.smithi046.lplrtl (mgr.14184) 415 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:52.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:52 smithi046 bash[16275]: cluster 2024-02-23T00:37:50.739477+0000 mgr.smithi046.lplrtl (mgr.14184) 416 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:52.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:52 smithi046 bash[16275]: cephadm 2024-02-23T00:37:50.766581+0000 mgr.smithi046.lplrtl (mgr.14184) 417 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.boqyve on smithi142 2024-02-23T00:37:52.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:52 smithi046 bash[16275]: cluster 2024-02-23T00:37:51.433213+0000 mon.smithi046 (mon.0) 751 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:37:52.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:52 smithi046 bash[16275]: cluster 2024-02-23T00:37:51.433287+0000 mon.smithi046 (mon.0) 752 : cluster [INF] Cluster is now healthy 2024-02-23T00:37:52.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:52 smithi142 bash[20802]: cluster 2024-02-23T00:37:50.575402+0000 mgr.smithi046.lplrtl (mgr.14184) 415 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2024-02-23T00:37:52.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:52 smithi142 bash[20802]: cluster 2024-02-23T00:37:50.739477+0000 mgr.smithi046.lplrtl (mgr.14184) 416 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:52.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:52 smithi142 bash[20802]: cephadm 2024-02-23T00:37:50.766581+0000 mgr.smithi046.lplrtl (mgr.14184) 417 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.boqyve on smithi142 2024-02-23T00:37:52.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:52 smithi142 bash[20802]: cluster 2024-02-23T00:37:51.433213+0000 mon.smithi046 (mon.0) 751 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:37:52.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:52 smithi142 bash[20802]: cluster 2024-02-23T00:37:51.433287+0000 mon.smithi046 (mon.0) 752 : cluster [INF] Cluster is now healthy 2024-02-23T00:37:54.499 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:54.499 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:35:30.122948Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.abpfzv on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:40.644766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.padblz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-padblz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.padblz\nDeploy daemon haproxy.nfs.foo.smithi142.padblz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.516186Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.qbfvjr on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-qbfvjr\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.qbfvjr\nDeploy daemon haproxy.nfs.foo.smithi046.qbfvjr ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:36:44.519250Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.bwziei on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:54.725 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:54 smithi142 bash[20802]: cluster 2024-02-23T00:37:52.740459+0000 mgr.smithi046.lplrtl (mgr.14184) 418 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:54.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:54 smithi046 bash[16275]: cluster 2024-02-23T00:37:52.740459+0000 mgr.smithi046.lplrtl (mgr.14184) 418 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:55.053 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:37:55.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:55 smithi046 bash[16275]: audit 2024-02-23T00:37:54.480876+0000 mgr.smithi046.lplrtl (mgr.14184) 419 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:55.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:55 smithi046 bash[16275]: audit 2024-02-23T00:37:54.805845+0000 mon.smithi046 (mon.0) 753 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.boqyve"}]: dispatch 2024-02-23T00:37:55.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:55 smithi142 bash[20802]: audit 2024-02-23T00:37:54.480876+0000 mgr.smithi046.lplrtl (mgr.14184) 419 : audit [DBG] from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:37:55.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:55 smithi142 bash[20802]: audit 2024-02-23T00:37:54.805845+0000 mon.smithi046 (mon.0) 753 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.boqyve"}]: dispatch 2024-02-23T00:37:56.054 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:37:56.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: cluster 2024-02-23T00:37:54.742210+0000 mgr.smithi046.lplrtl (mgr.14184) 420 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:56.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: cephadm 2024-02-23T00:37:54.804441+0000 mgr.smithi046.lplrtl (mgr.14184) 421 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: cephadm 2024-02-23T00:37:54.805088+0000 mgr.smithi046.lplrtl (mgr.14184) 422 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: cephadm 2024-02-23T00:37:54.807610+0000 mgr.smithi046.lplrtl (mgr.14184) 423 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:56 smithi046 bash[16275]: cephadm 2024-02-23T00:37:54.812156+0000 mgr.smithi046.lplrtl (mgr.14184) 424 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.labvca on smithi046 2024-02-23T00:37:56.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: cluster 2024-02-23T00:37:54.742210+0000 mgr.smithi046.lplrtl (mgr.14184) 420 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:37:56.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: cephadm 2024-02-23T00:37:54.804441+0000 mgr.smithi046.lplrtl (mgr.14184) 421 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:37:56.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.764 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: cephadm 2024-02-23T00:37:54.805088+0000 mgr.smithi046.lplrtl (mgr.14184) 422 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: cephadm 2024-02-23T00:37:54.807610+0000 mgr.smithi046.lplrtl (mgr.14184) 423 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.765 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve 2024-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.boqyve ... 2024-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:37:56.766 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:37:56.767 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:37:56.767 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:56 smithi142 bash[20802]: cephadm 2024-02-23T00:37:54.812156+0000 mgr.smithi046.lplrtl (mgr.14184) 424 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.labvca on smithi046 2024-02-23T00:37:58.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:58 smithi046 bash[16275]: cluster 2024-02-23T00:37:56.743434+0000 mgr.smithi046.lplrtl (mgr.14184) 425 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 402 B/s rd, 0 op/s 2024-02-23T00:37:58.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:58 smithi142 bash[20802]: cluster 2024-02-23T00:37:56.743434+0000 mgr.smithi046.lplrtl (mgr.14184) 425 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 402 B/s rd, 0 op/s 2024-02-23T00:37:59.312 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:37:59.312 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:37:59.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:37:59 smithi046 bash[16275]: audit 2024-02-23T00:37:58.803789+0000 mon.smithi046 (mon.0) 754 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.labvca"}]: dispatch 2024-02-23T00:37:59.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:37:59 smithi142 bash[20802]: audit 2024-02-23T00:37:58.803789+0000 mon.smithi046 (mon.0) 754 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.labvca"}]: dispatch 2024-02-23T00:37:59.930 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:00.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cluster 2024-02-23T00:37:58.744596+0000 mgr.smithi046.lplrtl (mgr.14184) 426 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 805 B/s rd, 100 B/s wr, 0 op/s 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cephadm 2024-02-23T00:37:58.802541+0000 mgr.smithi046.lplrtl (mgr.14184) 427 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cephadm 2024-02-23T00:37:58.803149+0000 mgr.smithi046.lplrtl (mgr.14184) 428 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cephadm 2024-02-23T00:37:58.805196+0000 mgr.smithi046.lplrtl (mgr.14184) 429 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cephadm 2024-02-23T00:37:58.809964+0000 mgr.smithi046.lplrtl (mgr.14184) 430 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cephadm 2024-02-23T00:37:58.811927+0000 mgr.smithi046.lplrtl (mgr.14184) 431 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cluster 2024-02-23T00:37:58.812716+0000 mgr.smithi046.lplrtl (mgr.14184) 432 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 870 B/s rd, 124 B/s wr, 1 op/s 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: audit 2024-02-23T00:37:59.293795+0000 mgr.smithi046.lplrtl (mgr.14184) 433 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:00.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:00 smithi142 bash[20802]: cluster 2024-02-23T00:37:59.471208+0000 mon.smithi046 (mon.0) 755 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:38:00.931 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cluster 2024-02-23T00:37:58.744596+0000 mgr.smithi046.lplrtl (mgr.14184) 426 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 805 B/s rd, 100 B/s wr, 0 op/s 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cephadm 2024-02-23T00:37:58.802541+0000 mgr.smithi046.lplrtl (mgr.14184) 427 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.945 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cephadm 2024-02-23T00:37:58.803149+0000 mgr.smithi046.lplrtl (mgr.14184) 428 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cephadm 2024-02-23T00:37:58.805196+0000 mgr.smithi046.lplrtl (mgr.14184) 429 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.labvca ... 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:38:00.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cephadm 2024-02-23T00:37:58.809964+0000 mgr.smithi046.lplrtl (mgr.14184) 430 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cephadm 2024-02-23T00:37:58.811927+0000 mgr.smithi046.lplrtl (mgr.14184) 431 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cluster 2024-02-23T00:37:58.812716+0000 mgr.smithi046.lplrtl (mgr.14184) 432 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 870 B/s rd, 124 B/s wr, 1 op/s 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: audit 2024-02-23T00:37:59.293795+0000 mgr.smithi046.lplrtl (mgr.14184) 433 : audit [DBG] from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:00.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:00 smithi046 bash[16275]: cluster 2024-02-23T00:37:59.471208+0000 mon.smithi046 (mon.0) 755 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:38:02.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:02 smithi046 bash[16275]: cluster 2024-02-23T00:38:00.814511+0000 mgr.smithi046.lplrtl (mgr.14184) 434 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:02 smithi142 bash[20802]: cluster 2024-02-23T00:38:00.814511+0000 mgr.smithi046.lplrtl (mgr.14184) 434 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:04.156 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:04.156 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:04.736 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:04.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:04 smithi142 bash[20802]: cluster 2024-02-23T00:38:02.815447+0000 mgr.smithi046.lplrtl (mgr.14184) 435 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:04.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:04 smithi142 bash[20802]: audit 2024-02-23T00:38:03.490939+0000 mon.smithi046 (mon.0) 756 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:38:04.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:04 smithi046 bash[16275]: cluster 2024-02-23T00:38:02.815447+0000 mgr.smithi046.lplrtl (mgr.14184) 435 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:04.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:04 smithi046 bash[16275]: audit 2024-02-23T00:38:03.490939+0000 mon.smithi046 (mon.0) 756 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:38:05.738 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:05 smithi142 bash[20802]: audit 2024-02-23T00:38:04.137372+0000 mgr.smithi046.lplrtl (mgr.14184) 436 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:05.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:05 smithi046 bash[16275]: audit 2024-02-23T00:38:04.137372+0000 mgr.smithi046.lplrtl (mgr.14184) 436 : audit [DBG] from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:06.815 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:06 smithi046 bash[16275]: cluster 2024-02-23T00:38:04.817563+0000 mgr.smithi046.lplrtl (mgr.14184) 437 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:07.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:06 smithi142 bash[20802]: cluster 2024-02-23T00:38:04.817563+0000 mgr.smithi046.lplrtl (mgr.14184) 437 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:08.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:08 smithi046 bash[16275]: cluster 2024-02-23T00:38:06.818631+0000 mgr.smithi046.lplrtl (mgr.14184) 438 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:08.763 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:08.763 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:09.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:08 smithi142 bash[20802]: cluster 2024-02-23T00:38:06.818631+0000 mgr.smithi046.lplrtl (mgr.14184) 438 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 101 B/s wr, 1 op/s 2024-02-23T00:38:09.384 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:10.386 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:10.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:10 smithi046 bash[16275]: audit 2024-02-23T00:38:08.749118+0000 mgr.smithi046.lplrtl (mgr.14184) 439 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:10.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:10 smithi046 bash[16275]: cluster 2024-02-23T00:38:08.820008+0000 mgr.smithi046.lplrtl (mgr.14184) 440 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 711 B/s rd, 0 op/s 2024-02-23T00:38:10.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:10 smithi142 bash[20802]: audit 2024-02-23T00:38:08.749118+0000 mgr.smithi046.lplrtl (mgr.14184) 439 : audit [DBG] from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:10.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:10 smithi142 bash[20802]: cluster 2024-02-23T00:38:08.820008+0000 mgr.smithi046.lplrtl (mgr.14184) 440 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 711 B/s rd, 0 op/s 2024-02-23T00:38:12.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:12 smithi046 bash[16275]: cluster 2024-02-23T00:38:10.821829+0000 mgr.smithi046.lplrtl (mgr.14184) 441 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:38:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:12 smithi142 bash[20802]: cluster 2024-02-23T00:38:10.821829+0000 mgr.smithi046.lplrtl (mgr.14184) 441 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:38:13.578 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:13.578 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:14.122 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:14.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:14 smithi046 bash[16275]: cluster 2024-02-23T00:38:12.823427+0000 mgr.smithi046.lplrtl (mgr.14184) 442 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:14.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:14 smithi046 bash[16275]: audit 2024-02-23T00:38:13.567986+0000 mgr.smithi046.lplrtl (mgr.14184) 443 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:14 smithi142 bash[20802]: cluster 2024-02-23T00:38:12.823427+0000 mgr.smithi046.lplrtl (mgr.14184) 442 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:14 smithi142 bash[20802]: audit 2024-02-23T00:38:13.567986+0000 mgr.smithi046.lplrtl (mgr.14184) 443 : audit [DBG] from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:15.123 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:16.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:16 smithi046 bash[16275]: cluster 2024-02-23T00:38:14.825366+0000 mgr.smithi046.lplrtl (mgr.14184) 444 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:17.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:16 smithi142 bash[20802]: cluster 2024-02-23T00:38:14.825366+0000 mgr.smithi046.lplrtl (mgr.14184) 444 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:18.149 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:18.149 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:18.718 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:18.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:18 smithi046 bash[16275]: cluster 2024-02-23T00:38:16.826903+0000 mgr.smithi046.lplrtl (mgr.14184) 445 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:18 smithi142 bash[20802]: cluster 2024-02-23T00:38:16.826903+0000 mgr.smithi046.lplrtl (mgr.14184) 445 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:19.720 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:19.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:19 smithi046 bash[16275]: audit 2024-02-23T00:38:18.132665+0000 mgr.smithi046.lplrtl (mgr.14184) 446 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:19 smithi142 bash[20802]: audit 2024-02-23T00:38:18.132665+0000 mgr.smithi046.lplrtl (mgr.14184) 446 : audit [DBG] from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:20.834 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:20 smithi046 bash[16275]: cluster 2024-02-23T00:38:18.828323+0000 mgr.smithi046.lplrtl (mgr.14184) 447 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:20.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:20 smithi142 bash[20802]: cluster 2024-02-23T00:38:18.828323+0000 mgr.smithi046.lplrtl (mgr.14184) 447 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:22.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:22 smithi046 bash[16275]: cluster 2024-02-23T00:38:20.830423+0000 mgr.smithi046.lplrtl (mgr.14184) 448 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:22.884 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:22.884 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:23.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:22 smithi142 bash[20802]: cluster 2024-02-23T00:38:20.830423+0000 mgr.smithi046.lplrtl (mgr.14184) 448 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:23.498 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:24.500 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:24.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:24 smithi046 bash[16275]: cluster 2024-02-23T00:38:22.831978+0000 mgr.smithi046.lplrtl (mgr.14184) 449 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:24.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:24 smithi046 bash[16275]: audit 2024-02-23T00:38:22.866437+0000 mgr.smithi046.lplrtl (mgr.14184) 450 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:24 smithi142 bash[20802]: cluster 2024-02-23T00:38:22.831978+0000 mgr.smithi046.lplrtl (mgr.14184) 449 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:24 smithi142 bash[20802]: audit 2024-02-23T00:38:22.866437+0000 mgr.smithi046.lplrtl (mgr.14184) 450 : audit [DBG] from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:26.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:26 smithi046 bash[16275]: cluster 2024-02-23T00:38:24.834038+0000 mgr.smithi046.lplrtl (mgr.14184) 451 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:27.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:26 smithi142 bash[20802]: cluster 2024-02-23T00:38:24.834038+0000 mgr.smithi046.lplrtl (mgr.14184) 451 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:27.706 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:27.707 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:27.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:27 smithi046 bash[16275]: cluster 2024-02-23T00:38:26.835484+0000 mgr.smithi046.lplrtl (mgr.14184) 452 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:28.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:27 smithi142 bash[20802]: cluster 2024-02-23T00:38:26.835484+0000 mgr.smithi046.lplrtl (mgr.14184) 452 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:28.322 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:28.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:28 smithi046 bash[16275]: audit 2024-02-23T00:38:27.689130+0000 mgr.smithi046.lplrtl (mgr.14184) 453 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:28 smithi142 bash[20802]: audit 2024-02-23T00:38:27.689130+0000 mgr.smithi046.lplrtl (mgr.14184) 453 : audit [DBG] from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:29.323 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:29.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:29 smithi046 bash[16275]: cluster 2024-02-23T00:38:28.836942+0000 mgr.smithi046.lplrtl (mgr.14184) 454 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:29 smithi142 bash[20802]: cluster 2024-02-23T00:38:28.836942+0000 mgr.smithi046.lplrtl (mgr.14184) 454 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:32.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:31 smithi046 bash[16275]: cluster 2024-02-23T00:38:30.838292+0000 mgr.smithi046.lplrtl (mgr.14184) 455 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:32.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:31 smithi142 bash[20802]: cluster 2024-02-23T00:38:30.838292+0000 mgr.smithi046.lplrtl (mgr.14184) 455 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:32.445 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:32.445 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:33.082 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:33.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:32 smithi046 bash[16275]: audit 2024-02-23T00:38:32.427837+0000 mgr.smithi046.lplrtl (mgr.14184) 456 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:33.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:32 smithi142 bash[20802]: audit 2024-02-23T00:38:32.427837+0000 mgr.smithi046.lplrtl (mgr.14184) 456 : audit [DBG] from='client.14786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:34.083 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:34.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:33 smithi046 bash[16275]: cluster 2024-02-23T00:38:32.839886+0000 mgr.smithi046.lplrtl (mgr.14184) 457 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:34.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:33 smithi142 bash[20802]: cluster 2024-02-23T00:38:32.839886+0000 mgr.smithi046.lplrtl (mgr.14184) 457 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:36.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:35 smithi046 bash[16275]: cluster 2024-02-23T00:38:34.841378+0000 mgr.smithi046.lplrtl (mgr.14184) 458 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:36.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:35 smithi142 bash[20802]: cluster 2024-02-23T00:38:34.841378+0000 mgr.smithi046.lplrtl (mgr.14184) 458 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:37.293 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:37.294 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:37.893 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:38.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:37 smithi046 bash[16275]: cluster 2024-02-23T00:38:36.842462+0000 mgr.smithi046.lplrtl (mgr.14184) 459 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:38.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:37 smithi046 bash[16275]: audit 2024-02-23T00:38:37.275220+0000 mgr.smithi046.lplrtl (mgr.14184) 460 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:38.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:37 smithi142 bash[20802]: cluster 2024-02-23T00:38:36.842462+0000 mgr.smithi046.lplrtl (mgr.14184) 459 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:38.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:37 smithi142 bash[20802]: audit 2024-02-23T00:38:37.275220+0000 mgr.smithi046.lplrtl (mgr.14184) 460 : audit [DBG] from='client.14790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:38.894 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:40.122 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:39 smithi046 bash[16275]: cluster 2024-02-23T00:38:38.843810+0000 mgr.smithi046.lplrtl (mgr.14184) 461 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:40.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:39 smithi142 bash[20802]: cluster 2024-02-23T00:38:38.843810+0000 mgr.smithi046.lplrtl (mgr.14184) 461 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:41.915 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:41.915 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:42.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:41 smithi046 bash[16275]: cluster 2024-02-23T00:38:40.845031+0000 mgr.smithi046.lplrtl (mgr.14184) 462 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:42.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:41 smithi142 bash[20802]: cluster 2024-02-23T00:38:40.845031+0000 mgr.smithi046.lplrtl (mgr.14184) 462 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:42.505 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:43.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:42 smithi046 bash[16275]: audit 2024-02-23T00:38:41.896528+0000 mgr.smithi046.lplrtl (mgr.14184) 463 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:43.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:42 smithi142 bash[20802]: audit 2024-02-23T00:38:41.896528+0000 mgr.smithi046.lplrtl (mgr.14184) 463 : audit [DBG] from='client.14794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:43.506 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:44.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:43 smithi046 bash[16275]: cluster 2024-02-23T00:38:42.846684+0000 mgr.smithi046.lplrtl (mgr.14184) 464 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:44.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:43 smithi142 bash[20802]: cluster 2024-02-23T00:38:42.846684+0000 mgr.smithi046.lplrtl (mgr.14184) 464 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:46.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:45 smithi046 bash[16275]: cluster 2024-02-23T00:38:44.847936+0000 mgr.smithi046.lplrtl (mgr.14184) 465 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:45 smithi142 bash[20802]: cluster 2024-02-23T00:38:44.847936+0000 mgr.smithi046.lplrtl (mgr.14184) 465 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:46.477 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:46.477 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:47.101 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:47.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:46 smithi046 bash[16275]: audit 2024-02-23T00:38:46.460719+0000 mgr.smithi046.lplrtl (mgr.14184) 466 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:47.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:46 smithi142 bash[20802]: audit 2024-02-23T00:38:46.460719+0000 mgr.smithi046.lplrtl (mgr.14184) 466 : audit [DBG] from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:48.102 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:48.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:47 smithi046 bash[16275]: cluster 2024-02-23T00:38:46.849379+0000 mgr.smithi046.lplrtl (mgr.14184) 467 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:47 smithi142 bash[20802]: cluster 2024-02-23T00:38:46.849379+0000 mgr.smithi046.lplrtl (mgr.14184) 467 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:50.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:49 smithi046 bash[16275]: cluster 2024-02-23T00:38:48.850786+0000 mgr.smithi046.lplrtl (mgr.14184) 468 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:50.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:49 smithi142 bash[20802]: cluster 2024-02-23T00:38:48.850786+0000 mgr.smithi046.lplrtl (mgr.14184) 468 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:51.074 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:51.075 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:51.670 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:52.238 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:51 smithi046 bash[16275]: cluster 2024-02-23T00:38:50.852318+0000 mgr.smithi046.lplrtl (mgr.14184) 469 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:52.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:51 smithi046 bash[16275]: audit 2024-02-23T00:38:51.058076+0000 mgr.smithi046.lplrtl (mgr.14184) 470 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:52.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:51 smithi142 bash[20802]: cluster 2024-02-23T00:38:50.852318+0000 mgr.smithi046.lplrtl (mgr.14184) 469 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:38:52.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:51 smithi142 bash[20802]: audit 2024-02-23T00:38:51.058076+0000 mgr.smithi046.lplrtl (mgr.14184) 470 : audit [DBG] from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:52.671 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:54.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:53 smithi046 bash[16275]: cluster 2024-02-23T00:38:52.853822+0000 mgr.smithi046.lplrtl (mgr.14184) 471 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:54.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:53 smithi142 bash[20802]: cluster 2024-02-23T00:38:52.853822+0000 mgr.smithi046.lplrtl (mgr.14184) 471 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:55.626 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:38:55.627 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:38:56.178 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:38:56.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:55 smithi142 bash[20802]: cluster 2024-02-23T00:38:54.855584+0000 mgr.smithi046.lplrtl (mgr.14184) 472 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:56.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:55 smithi046 bash[16275]: cluster 2024-02-23T00:38:54.855584+0000 mgr.smithi046.lplrtl (mgr.14184) 472 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:57.179 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:38:57.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:56 smithi142 bash[20802]: audit 2024-02-23T00:38:55.609128+0000 mgr.smithi046.lplrtl (mgr.14184) 473 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:57.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:56 smithi046 bash[16275]: audit 2024-02-23T00:38:55.609128+0000 mgr.smithi046.lplrtl (mgr.14184) 473 : audit [DBG] from='client.14806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:38:58.438 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:58 smithi046 bash[16275]: cluster 2024-02-23T00:38:56.857009+0000 mgr.smithi046.lplrtl (mgr.14184) 474 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:58 smithi142 bash[20802]: cluster 2024-02-23T00:38:56.857009+0000 mgr.smithi046.lplrtl (mgr.14184) 474 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:38:59.488 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:38:59 smithi046 bash[16275]: audit 2024-02-23T00:38:58.815755+0000 mon.smithi046 (mon.0) 757 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:38:59.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:38:59 smithi142 bash[20802]: audit 2024-02-23T00:38:58.815755+0000 mon.smithi046 (mon.0) 757 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:39:00.202 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:00.202 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:36:44.521676Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.gkggtf on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: cluster 2024-02-23T00:38:58.858050+0000 mgr.smithi046.lplrtl (mgr.14184) 475 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.117649+0000 mon.smithi046 (mon.0) 758 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.410240+0000 mon.smithi046 (mon.0) 759 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.412177+0000 mon.smithi046 (mon.0) 760 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.422891+0000 mon.smithi046 (mon.0) 761 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: cluster 2024-02-23T00:38:59.424455+0000 mgr.smithi046.lplrtl (mgr.14184) 476 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.432992+0000 mon.smithi046 (mon.0) 762 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: audit 2024-02-23T00:38:59.451103+0000 mon.smithi046 (mon.0) 763 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:00 smithi046 bash[16275]: cephadm 2024-02-23T00:38:59.454410+0000 mgr.smithi046.lplrtl (mgr.14184) 477 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vzwgck on smithi142 2024-02-23T00:39:00.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: cluster 2024-02-23T00:38:58.858050+0000 mgr.smithi046.lplrtl (mgr.14184) 475 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:00.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.117649+0000 mon.smithi046 (mon.0) 758 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.410240+0000 mon.smithi046 (mon.0) 759 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:39:00.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.412177+0000 mon.smithi046 (mon.0) 760 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:39:00.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.422891+0000 mon.smithi046 (mon.0) 761 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: cluster 2024-02-23T00:38:59.424455+0000 mgr.smithi046.lplrtl (mgr.14184) 476 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:00.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.432992+0000 mon.smithi046 (mon.0) 762 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:39:00.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: audit 2024-02-23T00:38:59.451103+0000 mon.smithi046 (mon.0) 763 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:00.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:00 smithi142 bash[20802]: cephadm 2024-02-23T00:38:59.454410+0000 mgr.smithi046.lplrtl (mgr.14184) 477 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vzwgck on smithi142 2024-02-23T00:39:00.843 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:01.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:01 smithi046 bash[16275]: audit 2024-02-23T00:39:00.185602+0000 mgr.smithi046.lplrtl (mgr.14184) 478 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:01.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:01 smithi046 bash[16275]: cluster 2024-02-23T00:39:00.418731+0000 mon.smithi046 (mon.0) 764 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:39:01.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:01 smithi046 bash[16275]: cluster 2024-02-23T00:39:00.418807+0000 mon.smithi046 (mon.0) 765 : cluster [INF] Cluster is now healthy 2024-02-23T00:39:01.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:01 smithi142 bash[20802]: audit 2024-02-23T00:39:00.185602+0000 mgr.smithi046.lplrtl (mgr.14184) 478 : audit [DBG] from='client.14810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:01.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:01 smithi142 bash[20802]: cluster 2024-02-23T00:39:00.418731+0000 mon.smithi046 (mon.0) 764 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:39:01.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:01 smithi142 bash[20802]: cluster 2024-02-23T00:39:00.418807+0000 mon.smithi046 (mon.0) 765 : cluster [INF] Cluster is now healthy 2024-02-23T00:39:01.844 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:02.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:02 smithi046 bash[16275]: cluster 2024-02-23T00:39:01.425835+0000 mgr.smithi046.lplrtl (mgr.14184) 479 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:02 smithi142 bash[20802]: cluster 2024-02-23T00:39:01.425835+0000 mgr.smithi046.lplrtl (mgr.14184) 479 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:03.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:03 smithi142 bash[20802]: audit 2024-02-23T00:39:03.281263+0000 mon.smithi046 (mon.0) 766 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vzwgck"}]: dispatch 2024-02-23T00:39:03.738 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:03 smithi046 bash[16275]: audit 2024-02-23T00:39:03.281263+0000 mon.smithi046 (mon.0) 766 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vzwgck"}]: dispatch 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: cephadm 2024-02-23T00:39:03.280345+0000 mgr.smithi046.lplrtl (mgr.14184) 480 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.610 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.611 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: cephadm 2024-02-23T00:39:03.280680+0000 mgr.smithi046.lplrtl (mgr.14184) 481 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: cephadm 2024-02-23T00:39:03.283000+0000 mgr.smithi046.lplrtl (mgr.14184) 482 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.612 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.613 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.613 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.613 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.613 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: cephadm 2024-02-23T00:39:03.288058+0000 mgr.smithi046.lplrtl (mgr.14184) 483 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.uapiin on smithi046 2024-02-23T00:39:04.613 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:04 smithi046 bash[16275]: cluster 2024-02-23T00:39:03.427119+0000 mgr.smithi046.lplrtl (mgr.14184) 484 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: cephadm 2024-02-23T00:39:03.280345+0000 mgr.smithi046.lplrtl (mgr.14184) 480 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: cephadm 2024-02-23T00:39:03.280680+0000 mgr.smithi046.lplrtl (mgr.14184) 481 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: cephadm 2024-02-23T00:39:03.283000+0000 mgr.smithi046.lplrtl (mgr.14184) 482 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:04.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:04.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:04.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:04.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: cephadm 2024-02-23T00:39:03.288058+0000 mgr.smithi046.lplrtl (mgr.14184) 483 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.uapiin on smithi046 2024-02-23T00:39:04.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:04 smithi142 bash[20802]: cluster 2024-02-23T00:39:03.427119+0000 mgr.smithi046.lplrtl (mgr.14184) 484 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:05.073 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:05.073 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:54.807336Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.boqyve on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-boqyve\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.boqyve\nDeploy daemon haproxy.nfs.foo.smithi142.boqyve ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.804926Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.labvca on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-labvca\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.labvca\nDeploy daemon haproxy.nfs.foo.smithi046.labvca ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:37:58.809737Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.gdvpyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:05.666 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:06.668 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:06.680 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:06 smithi046 bash[16275]: audit 2024-02-23T00:39:05.053969+0000 mgr.smithi046.lplrtl (mgr.14184) 485 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:06.681 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:06 smithi046 bash[16275]: audit 2024-02-23T00:39:05.319300+0000 mon.smithi046 (mon.0) 767 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:06.681 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:06 smithi046 bash[16275]: cluster 2024-02-23T00:39:05.428937+0000 mgr.smithi046.lplrtl (mgr.14184) 486 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:06 smithi142 bash[20802]: audit 2024-02-23T00:39:05.053969+0000 mgr.smithi046.lplrtl (mgr.14184) 485 : audit [DBG] from='client.14814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:06 smithi142 bash[20802]: audit 2024-02-23T00:39:05.319300+0000 mon.smithi046 (mon.0) 767 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:06 smithi142 bash[20802]: cluster 2024-02-23T00:39:05.428937+0000 mgr.smithi046.lplrtl (mgr.14184) 486 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cluster 2024-02-23T00:39:07.430174+0000 mgr.smithi046.lplrtl (mgr.14184) 487 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cephadm 2024-02-23T00:39:07.556125+0000 mgr.smithi046.lplrtl (mgr.14184) 488 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cephadm 2024-02-23T00:39:07.556606+0000 mgr.smithi046.lplrtl (mgr.14184) 489 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: audit 2024-02-23T00:39:07.557247+0000 mon.smithi046 (mon.0) 768 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.uapiin"}]: dispatch 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cephadm 2024-02-23T00:39:07.558616+0000 mgr.smithi046.lplrtl (mgr.14184) 490 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cephadm 2024-02-23T00:39:07.562516+0000 mgr.smithi046.lplrtl (mgr.14184) 491 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cephadm 2024-02-23T00:39:07.565785+0000 mgr.smithi046.lplrtl (mgr.14184) 492 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:39:08.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:08 smithi142 bash[20802]: cluster 2024-02-23T00:39:07.566718+0000 mgr.smithi046.lplrtl (mgr.14184) 493 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-23T00:39:08.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cluster 2024-02-23T00:39:07.430174+0000 mgr.smithi046.lplrtl (mgr.14184) 487 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cephadm 2024-02-23T00:39:07.556125+0000 mgr.smithi046.lplrtl (mgr.14184) 488 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cephadm 2024-02-23T00:39:07.556606+0000 mgr.smithi046.lplrtl (mgr.14184) 489 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: audit 2024-02-23T00:39:07.557247+0000 mon.smithi046 (mon.0) 768 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.uapiin"}]: dispatch 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cephadm 2024-02-23T00:39:07.558616+0000 mgr.smithi046.lplrtl (mgr.14184) 490 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cephadm 2024-02-23T00:39:07.562516+0000 mgr.smithi046.lplrtl (mgr.14184) 491 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cephadm 2024-02-23T00:39:07.565785+0000 mgr.smithi046.lplrtl (mgr.14184) 492 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:39:08.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:08 smithi046 bash[16275]: cluster 2024-02-23T00:39:07.566718+0000 mgr.smithi046.lplrtl (mgr.14184) 493 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-23T00:39:09.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:09 smithi142 bash[20802]: cluster 2024-02-23T00:39:08.484645+0000 mon.smithi046 (mon.0) 769 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:39:09.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:09 smithi142 bash[20802]: audit 2024-02-23T00:39:08.547404+0000 mon.smithi046 (mon.0) 770 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:09.961 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:09.961 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:09.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:09 smithi046 bash[16275]: cluster 2024-02-23T00:39:08.484645+0000 mon.smithi046 (mon.0) 769 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:39:09.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:09 smithi046 bash[16275]: audit 2024-02-23T00:39:08.547404+0000 mon.smithi046 (mon.0) 770 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:10.546 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:10 smithi142 bash[20802]: cluster 2024-02-23T00:39:09.567943+0000 mgr.smithi046.lplrtl (mgr.14184) 494 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 201 B/s rd, 0 op/s 2024-02-23T00:39:10.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:10 smithi046 bash[16275]: cluster 2024-02-23T00:39:09.567943+0000 mgr.smithi046.lplrtl (mgr.14184) 494 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 201 B/s rd, 0 op/s 2024-02-23T00:39:11.546 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:11.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:11 smithi046 bash[16275]: audit 2024-02-23T00:39:09.945338+0000 mgr.smithi046.lplrtl (mgr.14184) 495 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:12.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:11 smithi142 bash[20802]: audit 2024-02-23T00:39:09.945338+0000 mgr.smithi046.lplrtl (mgr.14184) 495 : audit [DBG] from='client.14818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:12.797 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:12 smithi046 bash[16275]: cluster 2024-02-23T00:39:11.568953+0000 mgr.smithi046.lplrtl (mgr.14184) 496 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:13.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:12 smithi142 bash[20802]: cluster 2024-02-23T00:39:11.568953+0000 mgr.smithi046.lplrtl (mgr.14184) 496 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:13.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:13 smithi046 bash[16275]: cluster 2024-02-23T00:39:13.570745+0000 mgr.smithi046.lplrtl (mgr.14184) 497 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:13 smithi142 bash[20802]: cluster 2024-02-23T00:39:13.570745+0000 mgr.smithi046.lplrtl (mgr.14184) 497 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:14.627 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:14.627 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:15.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:15.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:15 smithi046 bash[16275]: audit 2024-02-23T00:39:14.609382+0000 mgr.smithi046.lplrtl (mgr.14184) 498 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:15.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:15 smithi046 bash[16275]: cluster 2024-02-23T00:39:15.572630+0000 mgr.smithi046.lplrtl (mgr.14184) 499 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:16.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:15 smithi142 bash[20802]: audit 2024-02-23T00:39:14.609382+0000 mgr.smithi046.lplrtl (mgr.14184) 498 : audit [DBG] from='client.14822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:16.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:15 smithi142 bash[20802]: cluster 2024-02-23T00:39:15.572630+0000 mgr.smithi046.lplrtl (mgr.14184) 499 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:16.230 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:17.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:17 smithi046 bash[16275]: cluster 2024-02-23T00:39:17.574207+0000 mgr.smithi046.lplrtl (mgr.14184) 500 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:17 smithi142 bash[20802]: cluster 2024-02-23T00:39:17.574207+0000 mgr.smithi046.lplrtl (mgr.14184) 500 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:39:19.251 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:19.252 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:19.824 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:19.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:19 smithi046 bash[16275]: audit 2024-02-23T00:39:19.240308+0000 mgr.smithi046.lplrtl (mgr.14184) 501 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:19.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:19 smithi046 bash[16275]: cluster 2024-02-23T00:39:19.576076+0000 mgr.smithi046.lplrtl (mgr.14184) 502 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:19 smithi142 bash[20802]: audit 2024-02-23T00:39:19.240308+0000 mgr.smithi046.lplrtl (mgr.14184) 501 : audit [DBG] from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:19 smithi142 bash[20802]: cluster 2024-02-23T00:39:19.576076+0000 mgr.smithi046.lplrtl (mgr.14184) 502 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:20.825 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:21.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:21 smithi046 bash[16275]: audit 2024-02-23T00:39:20.317750+0000 mon.smithi046 (mon.0) 771 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:21.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:21 smithi142 bash[20802]: audit 2024-02-23T00:39:20.317750+0000 mon.smithi046 (mon.0) 771 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:39:22.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:22 smithi046 bash[16275]: cluster 2024-02-23T00:39:21.577401+0000 mgr.smithi046.lplrtl (mgr.14184) 503 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:22.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:22 smithi142 bash[20802]: cluster 2024-02-23T00:39:21.577401+0000 mgr.smithi046.lplrtl (mgr.14184) 503 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:23.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:23 smithi046 bash[16275]: cluster 2024-02-23T00:39:23.579063+0000 mgr.smithi046.lplrtl (mgr.14184) 504 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:23.913 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:23.913 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:24.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:23 smithi142 bash[20802]: cluster 2024-02-23T00:39:23.579063+0000 mgr.smithi046.lplrtl (mgr.14184) 504 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:24.562 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:24.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:24 smithi046 bash[16275]: audit 2024-02-23T00:39:23.894818+0000 mgr.smithi046.lplrtl (mgr.14184) 505 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:24 smithi142 bash[20802]: audit 2024-02-23T00:39:23.894818+0000 mgr.smithi046.lplrtl (mgr.14184) 505 : audit [DBG] from='client.14830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:25.562 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:25.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:25 smithi046 bash[16275]: cluster 2024-02-23T00:39:25.580111+0000 mgr.smithi046.lplrtl (mgr.14184) 506 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:25 smithi142 bash[20802]: cluster 2024-02-23T00:39:25.580111+0000 mgr.smithi046.lplrtl (mgr.14184) 506 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:27.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:27 smithi046 bash[16275]: cluster 2024-02-23T00:39:27.581659+0000 mgr.smithi046.lplrtl (mgr.14184) 507 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:28.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:27 smithi142 bash[20802]: cluster 2024-02-23T00:39:27.581659+0000 mgr.smithi046.lplrtl (mgr.14184) 507 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:28.556 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:28.557 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:28.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:28 smithi046 bash[16275]: audit 2024-02-23T00:39:28.540453+0000 mgr.smithi046.lplrtl (mgr.14184) 508 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:28 smithi142 bash[20802]: audit 2024-02-23T00:39:28.540453+0000 mgr.smithi046.lplrtl (mgr.14184) 508 : audit [DBG] from='client.14834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:29.227 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:29.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:29 smithi046 bash[16275]: cluster 2024-02-23T00:39:29.583511+0000 mgr.smithi046.lplrtl (mgr.14184) 509 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:29 smithi142 bash[20802]: cluster 2024-02-23T00:39:29.583511+0000 mgr.smithi046.lplrtl (mgr.14184) 509 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:30.229 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:31.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:31 smithi046 bash[16275]: cluster 2024-02-23T00:39:31.584867+0000 mgr.smithi046.lplrtl (mgr.14184) 510 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:32.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:31 smithi142 bash[20802]: cluster 2024-02-23T00:39:31.584867+0000 mgr.smithi046.lplrtl (mgr.14184) 510 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:33.320 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:33.321 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:33.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:33 smithi046 bash[16275]: audit 2024-02-23T00:39:33.304977+0000 mgr.smithi046.lplrtl (mgr.14184) 511 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:33 smithi046 bash[16275]: cluster 2024-02-23T00:39:33.586597+0000 mgr.smithi046.lplrtl (mgr.14184) 512 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:33 smithi142 bash[20802]: audit 2024-02-23T00:39:33.304977+0000 mgr.smithi046.lplrtl (mgr.14184) 511 : audit [DBG] from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:33 smithi142 bash[20802]: cluster 2024-02-23T00:39:33.586597+0000 mgr.smithi046.lplrtl (mgr.14184) 512 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:34.904 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:36.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:36 smithi046 bash[16275]: cluster 2024-02-23T00:39:35.588475+0000 mgr.smithi046.lplrtl (mgr.14184) 513 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:37.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:36 smithi142 bash[20802]: cluster 2024-02-23T00:39:35.588475+0000 mgr.smithi046.lplrtl (mgr.14184) 513 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:38.084 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:38.084 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:38.700 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:38.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:38 smithi046 bash[16275]: cluster 2024-02-23T00:39:37.590027+0000 mgr.smithi046.lplrtl (mgr.14184) 514 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:38.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:38 smithi046 bash[16275]: audit 2024-02-23T00:39:38.063715+0000 mgr.smithi046.lplrtl (mgr.14184) 515 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:39.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:38 smithi142 bash[20802]: cluster 2024-02-23T00:39:37.590027+0000 mgr.smithi046.lplrtl (mgr.14184) 514 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:39.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:38 smithi142 bash[20802]: audit 2024-02-23T00:39:38.063715+0000 mgr.smithi046.lplrtl (mgr.14184) 515 : audit [DBG] from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:39.701 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:40.862 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:40 smithi046 bash[16275]: cluster 2024-02-23T00:39:39.591837+0000 mgr.smithi046.lplrtl (mgr.14184) 516 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:41.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:40 smithi142 bash[20802]: cluster 2024-02-23T00:39:39.591837+0000 mgr.smithi046.lplrtl (mgr.14184) 516 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:42.772 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:42.773 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:42.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:42 smithi046 bash[16275]: cluster 2024-02-23T00:39:41.593053+0000 mgr.smithi046.lplrtl (mgr.14184) 517 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:43.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:42 smithi142 bash[20802]: cluster 2024-02-23T00:39:41.593053+0000 mgr.smithi046.lplrtl (mgr.14184) 517 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:43.403 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:43.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:43 smithi046 bash[16275]: audit 2024-02-23T00:39:42.753859+0000 mgr.smithi046.lplrtl (mgr.14184) 518 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:43 smithi142 bash[20802]: audit 2024-02-23T00:39:42.753859+0000 mgr.smithi046.lplrtl (mgr.14184) 518 : audit [DBG] from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:44.404 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:44.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:44 smithi046 bash[16275]: cluster 2024-02-23T00:39:43.594732+0000 mgr.smithi046.lplrtl (mgr.14184) 519 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:45.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:44 smithi142 bash[20802]: cluster 2024-02-23T00:39:43.594732+0000 mgr.smithi046.lplrtl (mgr.14184) 519 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:46.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:46 smithi046 bash[16275]: cluster 2024-02-23T00:39:45.596389+0000 mgr.smithi046.lplrtl (mgr.14184) 520 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:47.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:46 smithi142 bash[20802]: cluster 2024-02-23T00:39:45.596389+0000 mgr.smithi046.lplrtl (mgr.14184) 520 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:47.432 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:47.432 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:47.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:47 smithi046 bash[16275]: audit 2024-02-23T00:39:47.414413+0000 mgr.smithi046.lplrtl (mgr.14184) 521 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:48.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:47 smithi142 bash[20802]: audit 2024-02-23T00:39:47.414413+0000 mgr.smithi046.lplrtl (mgr.14184) 521 : audit [DBG] from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:48.083 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:48.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:48 smithi046 bash[16275]: cluster 2024-02-23T00:39:47.597904+0000 mgr.smithi046.lplrtl (mgr.14184) 522 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:49.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:48 smithi142 bash[20802]: cluster 2024-02-23T00:39:47.597904+0000 mgr.smithi046.lplrtl (mgr.14184) 522 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:49.084 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:50.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:50 smithi046 bash[16275]: cluster 2024-02-23T00:39:49.599737+0000 mgr.smithi046.lplrtl (mgr.14184) 523 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:51.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:50 smithi142 bash[20802]: cluster 2024-02-23T00:39:49.599737+0000 mgr.smithi046.lplrtl (mgr.14184) 523 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:39:52.131 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:52.131 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:52.765 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:52.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:52 smithi046 bash[16275]: cluster 2024-02-23T00:39:51.600998+0000 mgr.smithi046.lplrtl (mgr.14184) 524 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:52.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:52 smithi046 bash[16275]: audit 2024-02-23T00:39:52.119295+0000 mgr.smithi046.lplrtl (mgr.14184) 525 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:53.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:52 smithi142 bash[20802]: cluster 2024-02-23T00:39:51.600998+0000 mgr.smithi046.lplrtl (mgr.14184) 524 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:53.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:52 smithi142 bash[20802]: audit 2024-02-23T00:39:52.119295+0000 mgr.smithi046.lplrtl (mgr.14184) 525 : audit [DBG] from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:53.766 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:54.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:54 smithi046 bash[16275]: cluster 2024-02-23T00:39:53.602684+0000 mgr.smithi046.lplrtl (mgr.14184) 526 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:55.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:54 smithi142 bash[20802]: cluster 2024-02-23T00:39:53.602684+0000 mgr.smithi046.lplrtl (mgr.14184) 526 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:56.850 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:39:56.850 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:39:56.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:56 smithi046 bash[16275]: cluster 2024-02-23T00:39:55.604534+0000 mgr.smithi046.lplrtl (mgr.14184) 527 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:57.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:56 smithi142 bash[20802]: cluster 2024-02-23T00:39:55.604534+0000 mgr.smithi046.lplrtl (mgr.14184) 527 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:57.507 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:39:57.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:57 smithi046 bash[16275]: audit 2024-02-23T00:39:56.838663+0000 mgr.smithi046.lplrtl (mgr.14184) 528 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:58.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:57 smithi142 bash[20802]: audit 2024-02-23T00:39:56.838663+0000 mgr.smithi046.lplrtl (mgr.14184) 528 : audit [DBG] from='client.14858 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:39:58.508 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:39:58.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:39:58 smithi046 bash[16275]: cluster 2024-02-23T00:39:57.606210+0000 mgr.smithi046.lplrtl (mgr.14184) 529 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:39:59.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:39:58 smithi142 bash[20802]: cluster 2024-02-23T00:39:57.606210+0000 mgr.smithi046.lplrtl (mgr.14184) 529 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:39:59.608154+0000 mgr.smithi046.lplrtl (mgr.14184) 530 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000221+0000 mon.smithi046 (mon.0) 772 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000292+0000 mon.smithi046 (mon.0) 773 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000331+0000 mon.smithi046 (mon.0) 774 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000363+0000 mon.smithi046 (mon.0) 775 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000387+0000 mon.smithi046 (mon.0) 776 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:40:00.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000414+0000 mon.smithi046 (mon.0) 777 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000447+0000 mon.smithi046 (mon.0) 778 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000479+0000 mon.smithi046 (mon.0) 779 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000508+0000 mon.smithi046 (mon.0) 780 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000538+0000 mon.smithi046 (mon.0) 781 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000564+0000 mon.smithi046 (mon.0) 782 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000596+0000 mon.smithi046 (mon.0) 783 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000626+0000 mon.smithi046 (mon.0) 784 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000649+0000 mon.smithi046 (mon.0) 785 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000680+0000 mon.smithi046 (mon.0) 786 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000709+0000 mon.smithi046 (mon.0) 787 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000738+0000 mon.smithi046 (mon.0) 788 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000770+0000 mon.smithi046 (mon.0) 789 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:40:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000798+0000 mon.smithi046 (mon.0) 790 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000826+0000 mon.smithi046 (mon.0) 791 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000858+0000 mon.smithi046 (mon.0) 792 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000887+0000 mon.smithi046 (mon.0) 793 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000911+0000 mon.smithi046 (mon.0) 794 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000938+0000 mon.smithi046 (mon.0) 795 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000966+0000 mon.smithi046 (mon.0) 796 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.000995+0000 mon.smithi046 (mon.0) 797 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.001038+0000 mon.smithi046 (mon.0) 798 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:00.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:00 smithi046 bash[16275]: cluster 2024-02-23T00:40:00.001066+0000 mon.smithi046 (mon.0) 799 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:01.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:39:59.608154+0000 mgr.smithi046.lplrtl (mgr.14184) 530 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000221+0000 mon.smithi046 (mon.0) 772 : cluster [WRN] Health detail: HEALTH_WARN Failed to place 4 daemon(s) 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000292+0000 mon.smithi046 (mon.0) 773 : cluster [WRN] [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 4 daemon(s) 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000331+0000 mon.smithi046 (mon.0) 774 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000363+0000 mon.smithi046 (mon.0) 775 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000387+0000 mon.smithi046 (mon.0) 776 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000414+0000 mon.smithi046 (mon.0) 777 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000447+0000 mon.smithi046 (mon.0) 778 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000479+0000 mon.smithi046 (mon.0) 779 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000508+0000 mon.smithi046 (mon.0) 780 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi142.vzwgck ... 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000538+0000 mon.smithi046 (mon.0) 781 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000564+0000 mon.smithi046 (mon.0) 782 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000596+0000 mon.smithi046 (mon.0) 783 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000626+0000 mon.smithi046 (mon.0) 784 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-23T00:40:01.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000649+0000 mon.smithi046 (mon.0) 785 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000680+0000 mon.smithi046 (mon.0) 786 : cluster [WRN] Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000709+0000 mon.smithi046 (mon.0) 787 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000738+0000 mon.smithi046 (mon.0) 788 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000770+0000 mon.smithi046 (mon.0) 789 : cluster [WRN] Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000798+0000 mon.smithi046 (mon.0) 790 : cluster [WRN] /usr/bin/docker: stdout 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000826+0000 mon.smithi046 (mon.0) 791 : cluster [WRN] /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000858+0000 mon.smithi046 (mon.0) 792 : cluster [WRN] Deploy daemon haproxy.nfs.foo.smithi046.uapiin ... 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000887+0000 mon.smithi046 (mon.0) 793 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000911+0000 mon.smithi046 (mon.0) 794 : cluster [WRN] stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000938+0000 mon.smithi046 (mon.0) 795 : cluster [WRN] stat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit. 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000966+0000 mon.smithi046 (mon.0) 796 : cluster [WRN] stat: stderr See 'docker run --help'. 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.000995+0000 mon.smithi046 (mon.0) 797 : cluster [WRN] ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.001038+0000 mon.smithi046 (mon.0) 798 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:01.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:00 smithi142 bash[20802]: cluster 2024-02-23T00:40:00.001066+0000 mon.smithi046 (mon.0) 799 : cluster [WRN] Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:01.569 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:01.569 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:01.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:01 smithi046 bash[16275]: audit 2024-02-23T00:40:01.552161+0000 mgr.smithi046.lplrtl (mgr.14184) 531 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:02.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:01 smithi142 bash[20802]: audit 2024-02-23T00:40:01.552161+0000 mgr.smithi046.lplrtl (mgr.14184) 531 : audit [DBG] from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:02.193 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:03.194 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:03.205 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:02 smithi046 bash[16275]: cluster 2024-02-23T00:40:01.609536+0000 mgr.smithi046.lplrtl (mgr.14184) 532 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:03.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:02 smithi142 bash[20802]: cluster 2024-02-23T00:40:01.609536+0000 mgr.smithi046.lplrtl (mgr.14184) 532 : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:04.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:04 smithi046 bash[16275]: cluster 2024-02-23T00:40:03.611426+0000 mgr.smithi046.lplrtl (mgr.14184) 533 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:05.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:04 smithi142 bash[20802]: cluster 2024-02-23T00:40:03.611426+0000 mgr.smithi046.lplrtl (mgr.14184) 533 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:06.220 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:06.220 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:06.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:07.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:06 smithi046 bash[16275]: cluster 2024-02-23T00:40:05.613341+0000 mgr.smithi046.lplrtl (mgr.14184) 534 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:07.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:06 smithi046 bash[16275]: audit 2024-02-23T00:40:06.208377+0000 mgr.smithi046.lplrtl (mgr.14184) 535 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:07.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:06 smithi142 bash[20802]: cluster 2024-02-23T00:40:05.613341+0000 mgr.smithi046.lplrtl (mgr.14184) 534 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:07.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:06 smithi142 bash[20802]: audit 2024-02-23T00:40:06.208377+0000 mgr.smithi046.lplrtl (mgr.14184) 535 : audit [DBG] from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:07.828 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:08.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:07 smithi046 bash[16275]: audit 2024-02-23T00:40:07.569280+0000 mon.smithi046 (mon.0) 800 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:40:08.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:07 smithi142 bash[20802]: audit 2024-02-23T00:40:07.569280+0000 mon.smithi046 (mon.0) 800 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:40:09.168 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: cluster 2024-02-23T00:40:07.614966+0000 mgr.smithi046.lplrtl (mgr.14184) 536 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:09.168 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: audit 2024-02-23T00:40:07.906068+0000 mon.smithi046 (mon.0) 801 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: audit 2024-02-23T00:40:07.907329+0000 mon.smithi046 (mon.0) 802 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: audit 2024-02-23T00:40:07.914571+0000 mon.smithi046 (mon.0) 803 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: cluster 2024-02-23T00:40:07.915402+0000 mgr.smithi046.lplrtl (mgr.14184) 537 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: audit 2024-02-23T00:40:07.921793+0000 mon.smithi046 (mon.0) 804 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: audit 2024-02-23T00:40:07.936509+0000 mon.smithi046 (mon.0) 805 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:09.169 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:08 smithi046 bash[16275]: cephadm 2024-02-23T00:40:07.940551+0000 mgr.smithi046.lplrtl (mgr.14184) 538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nthswb on smithi142 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: cluster 2024-02-23T00:40:07.614966+0000 mgr.smithi046.lplrtl (mgr.14184) 536 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: audit 2024-02-23T00:40:07.906068+0000 mon.smithi046 (mon.0) 801 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: audit 2024-02-23T00:40:07.907329+0000 mon.smithi046 (mon.0) 802 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: audit 2024-02-23T00:40:07.914571+0000 mon.smithi046 (mon.0) 803 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: cluster 2024-02-23T00:40:07.915402+0000 mgr.smithi046.lplrtl (mgr.14184) 537 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: audit 2024-02-23T00:40:07.921793+0000 mon.smithi046 (mon.0) 804 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: audit 2024-02-23T00:40:07.936509+0000 mon.smithi046 (mon.0) 805 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:09.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:08 smithi142 bash[20802]: cephadm 2024-02-23T00:40:07.940551+0000 mgr.smithi046.lplrtl (mgr.14184) 538 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.nthswb on smithi142 2024-02-23T00:40:10.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:09 smithi046 bash[16275]: cluster 2024-02-23T00:40:08.911420+0000 mon.smithi046 (mon.0) 806 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:40:10.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:09 smithi046 bash[16275]: cluster 2024-02-23T00:40:08.911545+0000 mon.smithi046 (mon.0) 807 : cluster [INF] Cluster is now healthy 2024-02-23T00:40:10.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:09 smithi142 bash[20802]: cluster 2024-02-23T00:40:08.911420+0000 mon.smithi046 (mon.0) 806 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:40:10.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:09 smithi142 bash[20802]: cluster 2024-02-23T00:40:08.911545+0000 mon.smithi046 (mon.0) 807 : cluster [INF] Cluster is now healthy 2024-02-23T00:40:10.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:10 smithi046 bash[16275]: cluster 2024-02-23T00:40:09.917153+0000 mgr.smithi046.lplrtl (mgr.14184) 539 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:11.067 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:11.067 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:37:58.811803Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.bktxvx on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:03.282651Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vzwgck on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vzwgck\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vzwgck\nDeploy daemon haproxy.nfs.foo.smithi142.vzwgck ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.558390Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.uapiin on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-uapiin\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.uapiin\nDeploy daemon haproxy.nfs.foo.smithi046.uapiin ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:39:07.562306Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fnkiww on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:11.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:10 smithi142 bash[20802]: cluster 2024-02-23T00:40:09.917153+0000 mgr.smithi046.lplrtl (mgr.14184) 539 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:11.697 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:11.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:11 smithi046 bash[16275]: audit 2024-02-23T00:40:11.047503+0000 mgr.smithi046.lplrtl (mgr.14184) 540 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:11.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:11 smithi046 bash[16275]: audit 2024-02-23T00:40:11.752246+0000 mon.smithi046 (mon.0) 808 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nthswb"}]: dispatch 2024-02-23T00:40:12.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:11 smithi142 bash[20802]: audit 2024-02-23T00:40:11.047503+0000 mgr.smithi046.lplrtl (mgr.14184) 540 : audit [DBG] from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:12.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:11 smithi142 bash[20802]: audit 2024-02-23T00:40:11.752246+0000 mon.smithi046 (mon.0) 808 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.nthswb"}]: dispatch 2024-02-23T00:40:12.698 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: cephadm 2024-02-23T00:40:11.750919+0000 mgr.smithi046.lplrtl (mgr.14184) 541 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:40:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: cephadm 2024-02-23T00:40:11.751492+0000 mgr.smithi046.lplrtl (mgr.14184) 542 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: cephadm 2024-02-23T00:40:11.754058+0000 mgr.smithi046.lplrtl (mgr.14184) 543 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: cephadm 2024-02-23T00:40:11.758087+0000 mgr.smithi046.lplrtl (mgr.14184) 544 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.wdnihw on smithi046 2024-02-23T00:40:12.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:12 smithi046 bash[16275]: cluster 2024-02-23T00:40:11.918270+0000 mgr.smithi046.lplrtl (mgr.14184) 545 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: cephadm 2024-02-23T00:40:11.750919+0000 mgr.smithi046.lplrtl (mgr.14184) 541 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:13.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:13.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: cephadm 2024-02-23T00:40:11.751492+0000 mgr.smithi046.lplrtl (mgr.14184) 542 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: cephadm 2024-02-23T00:40:11.754058+0000 mgr.smithi046.lplrtl (mgr.14184) 543 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.nthswb ... 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:13.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:13.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:13.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: cephadm 2024-02-23T00:40:11.758087+0000 mgr.smithi046.lplrtl (mgr.14184) 544 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.wdnihw on smithi046 2024-02-23T00:40:13.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:12 smithi142 bash[20802]: cluster 2024-02-23T00:40:11.918270+0000 mgr.smithi046.lplrtl (mgr.14184) 545 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:15.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:14 smithi046 bash[16275]: cluster 2024-02-23T00:40:13.919448+0000 mgr.smithi046.lplrtl (mgr.14184) 546 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:15.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:14 smithi142 bash[20802]: cluster 2024-02-23T00:40:13.919448+0000 mgr.smithi046.lplrtl (mgr.14184) 546 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:40:15.887 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:15.887 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cephadm 2024-02-23T00:40:15.557444+0000 mgr.smithi046.lplrtl (mgr.14184) 547 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cephadm 2024-02-23T00:40:15.557679+0000 mgr.smithi046.lplrtl (mgr.14184) 548 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: audit 2024-02-23T00:40:15.558117+0000 mon.smithi046 (mon.0) 809 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.wdnihw"}]: dispatch 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cephadm 2024-02-23T00:40:15.559267+0000 mgr.smithi046.lplrtl (mgr.14184) 549 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cephadm 2024-02-23T00:40:15.561494+0000 mgr.smithi046.lplrtl (mgr.14184) 550 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cephadm 2024-02-23T00:40:15.563654+0000 mgr.smithi046.lplrtl (mgr.14184) 551 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:16.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:15 smithi046 bash[16275]: cluster 2024-02-23T00:40:15.565146+0000 mgr.smithi046.lplrtl (mgr.14184) 552 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:40:16.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cephadm 2024-02-23T00:40:15.557444+0000 mgr.smithi046.lplrtl (mgr.14184) 547 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cephadm 2024-02-23T00:40:15.557679+0000 mgr.smithi046.lplrtl (mgr.14184) 548 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: audit 2024-02-23T00:40:15.558117+0000 mon.smithi046 (mon.0) 809 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.wdnihw"}]: dispatch 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cephadm 2024-02-23T00:40:15.559267+0000 mgr.smithi046.lplrtl (mgr.14184) 549 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.wdnihw ... 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cephadm 2024-02-23T00:40:15.561494+0000 mgr.smithi046.lplrtl (mgr.14184) 550 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cephadm 2024-02-23T00:40:15.563654+0000 mgr.smithi046.lplrtl (mgr.14184) 551 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:40:16.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:15 smithi142 bash[20802]: cluster 2024-02-23T00:40:15.565146+0000 mgr.smithi046.lplrtl (mgr.14184) 552 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:40:16.561 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:16 smithi142 bash[20802]: audit 2024-02-23T00:40:15.872914+0000 mgr.smithi046.lplrtl (mgr.14184) 553 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:17.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:16 smithi142 bash[20802]: cluster 2024-02-23T00:40:15.977751+0000 mon.smithi046 (mon.0) 810 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:40:17.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:16 smithi046 bash[16275]: audit 2024-02-23T00:40:15.872914+0000 mgr.smithi046.lplrtl (mgr.14184) 553 : audit [DBG] from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:17.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:16 smithi046 bash[16275]: cluster 2024-02-23T00:40:15.977751+0000 mon.smithi046 (mon.0) 810 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:40:17.561 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:18.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:18 smithi046 bash[16275]: cluster 2024-02-23T00:40:17.566676+0000 mgr.smithi046.lplrtl (mgr.14184) 554 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:40:18.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:18 smithi142 bash[20802]: cluster 2024-02-23T00:40:17.566676+0000 mgr.smithi046.lplrtl (mgr.14184) 554 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:40:19.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:19 smithi046 bash[16275]: audit 2024-02-23T00:40:18.609213+0000 mon.smithi046 (mon.0) 811 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:19.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:19 smithi046 bash[16275]: cluster 2024-02-23T00:40:19.568465+0000 mgr.smithi046.lplrtl (mgr.14184) 555 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-02-23T00:40:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:19 smithi142 bash[20802]: audit 2024-02-23T00:40:18.609213+0000 mon.smithi046 (mon.0) 811 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:40:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:19 smithi142 bash[20802]: cluster 2024-02-23T00:40:19.568465+0000 mgr.smithi046.lplrtl (mgr.14184) 555 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 175 B/s rd, 0 op/s 2024-02-23T00:40:20.857 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:20.858 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:21.511 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:21.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:21 smithi046 bash[16275]: audit 2024-02-23T00:40:20.837424+0000 mgr.smithi046.lplrtl (mgr.14184) 556 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:21.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:21 smithi046 bash[16275]: cluster 2024-02-23T00:40:21.569756+0000 mgr.smithi046.lplrtl (mgr.14184) 557 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:22.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:21 smithi142 bash[20802]: audit 2024-02-23T00:40:20.837424+0000 mgr.smithi046.lplrtl (mgr.14184) 556 : audit [DBG] from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:22.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:21 smithi142 bash[20802]: cluster 2024-02-23T00:40:21.569756+0000 mgr.smithi046.lplrtl (mgr.14184) 557 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:22.512 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:23.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:23 smithi046 bash[16275]: cluster 2024-02-23T00:40:23.571393+0000 mgr.smithi046.lplrtl (mgr.14184) 558 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:24.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:23 smithi142 bash[20802]: cluster 2024-02-23T00:40:23.571393+0000 mgr.smithi046.lplrtl (mgr.14184) 558 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:25.441 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:25.441 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:25.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:25 smithi046 bash[16275]: audit 2024-02-23T00:40:25.420671+0000 mgr.smithi046.lplrtl (mgr.14184) 559 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:25.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:25 smithi046 bash[16275]: cluster 2024-02-23T00:40:25.572925+0000 mgr.smithi046.lplrtl (mgr.14184) 560 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:25.996 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:25 smithi142 bash[20802]: audit 2024-02-23T00:40:25.420671+0000 mgr.smithi046.lplrtl (mgr.14184) 559 : audit [DBG] from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:25 smithi142 bash[20802]: cluster 2024-02-23T00:40:25.572925+0000 mgr.smithi046.lplrtl (mgr.14184) 560 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:40:26.999 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:27.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:27 smithi046 bash[16275]: cluster 2024-02-23T00:40:27.574476+0000 mgr.smithi046.lplrtl (mgr.14184) 561 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:28.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:27 smithi142 bash[20802]: cluster 2024-02-23T00:40:27.574476+0000 mgr.smithi046.lplrtl (mgr.14184) 561 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:29.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:29 smithi046 bash[16275]: cluster 2024-02-23T00:40:29.577072+0000 mgr.smithi046.lplrtl (mgr.14184) 562 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:30.001 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:30.001 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:29 smithi142 bash[20802]: cluster 2024-02-23T00:40:29.577072+0000 mgr.smithi046.lplrtl (mgr.14184) 562 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:30.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:30.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:30 smithi046 bash[16275]: audit 2024-02-23T00:40:29.981833+0000 mgr.smithi046.lplrtl (mgr.14184) 563 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:31.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:30 smithi142 bash[20802]: audit 2024-02-23T00:40:29.981833+0000 mgr.smithi046.lplrtl (mgr.14184) 563 : audit [DBG] from='client.14886 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:31.585 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:31.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:31 smithi046 bash[16275]: cluster 2024-02-23T00:40:31.578356+0000 mgr.smithi046.lplrtl (mgr.14184) 564 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:32.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:31 smithi142 bash[20802]: cluster 2024-02-23T00:40:31.578356+0000 mgr.smithi046.lplrtl (mgr.14184) 564 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:33.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:33 smithi046 bash[16275]: cluster 2024-02-23T00:40:33.580099+0000 mgr.smithi046.lplrtl (mgr.14184) 565 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:33 smithi142 bash[20802]: cluster 2024-02-23T00:40:33.580099+0000 mgr.smithi046.lplrtl (mgr.14184) 565 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:34.703 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:34.703 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:35.299 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:35.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:35 smithi046 bash[16275]: audit 2024-02-23T00:40:34.685017+0000 mgr.smithi046.lplrtl (mgr.14184) 566 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:35.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:35 smithi046 bash[16275]: cluster 2024-02-23T00:40:35.582005+0000 mgr.smithi046.lplrtl (mgr.14184) 567 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:36.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:35 smithi142 bash[20802]: audit 2024-02-23T00:40:34.685017+0000 mgr.smithi046.lplrtl (mgr.14184) 566 : audit [DBG] from='client.14890 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:36.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:35 smithi142 bash[20802]: cluster 2024-02-23T00:40:35.582005+0000 mgr.smithi046.lplrtl (mgr.14184) 567 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:36.300 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:37.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:37 smithi046 bash[16275]: cluster 2024-02-23T00:40:37.584239+0000 mgr.smithi046.lplrtl (mgr.14184) 568 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:37 smithi142 bash[20802]: cluster 2024-02-23T00:40:37.584239+0000 mgr.smithi046.lplrtl (mgr.14184) 568 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:39.360 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:39.360 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:39.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:39 smithi046 bash[16275]: audit 2024-02-23T00:40:39.340056+0000 mgr.smithi046.lplrtl (mgr.14184) 569 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:39.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:39 smithi046 bash[16275]: cluster 2024-02-23T00:40:39.585917+0000 mgr.smithi046.lplrtl (mgr.14184) 570 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:39.932 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:40.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:39 smithi142 bash[20802]: audit 2024-02-23T00:40:39.340056+0000 mgr.smithi046.lplrtl (mgr.14184) 569 : audit [DBG] from='client.14894 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:40.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:39 smithi142 bash[20802]: cluster 2024-02-23T00:40:39.585917+0000 mgr.smithi046.lplrtl (mgr.14184) 570 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:40.934 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:41.944 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:41 smithi046 bash[16275]: cluster 2024-02-23T00:40:41.587015+0000 mgr.smithi046.lplrtl (mgr.14184) 571 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:41 smithi142 bash[20802]: cluster 2024-02-23T00:40:41.587015+0000 mgr.smithi046.lplrtl (mgr.14184) 571 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:43.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:43 smithi046 bash[16275]: cluster 2024-02-23T00:40:43.588572+0000 mgr.smithi046.lplrtl (mgr.14184) 572 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:43.854 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:43.854 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:43 smithi142 bash[20802]: cluster 2024-02-23T00:40:43.588572+0000 mgr.smithi046.lplrtl (mgr.14184) 572 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:44.428 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:44.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:44 smithi046 bash[16275]: audit 2024-02-23T00:40:43.833867+0000 mgr.smithi046.lplrtl (mgr.14184) 573 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:45.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:44 smithi142 bash[20802]: audit 2024-02-23T00:40:43.833867+0000 mgr.smithi046.lplrtl (mgr.14184) 573 : audit [DBG] from='client.14898 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:45.429 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:45.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:45 smithi046 bash[16275]: cluster 2024-02-23T00:40:45.589636+0000 mgr.smithi046.lplrtl (mgr.14184) 574 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:45 smithi142 bash[20802]: cluster 2024-02-23T00:40:45.589636+0000 mgr.smithi046.lplrtl (mgr.14184) 574 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:47.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:47 smithi046 bash[16275]: cluster 2024-02-23T00:40:47.591110+0000 mgr.smithi046.lplrtl (mgr.14184) 575 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:48.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:47 smithi142 bash[20802]: cluster 2024-02-23T00:40:47.591110+0000 mgr.smithi046.lplrtl (mgr.14184) 575 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:48.718 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:48.718 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:49.329 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:49.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:49 smithi046 bash[16275]: audit 2024-02-23T00:40:48.701134+0000 mgr.smithi046.lplrtl (mgr.14184) 576 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:49.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:49 smithi046 bash[16275]: cluster 2024-02-23T00:40:49.593169+0000 mgr.smithi046.lplrtl (mgr.14184) 577 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:49 smithi142 bash[20802]: audit 2024-02-23T00:40:48.701134+0000 mgr.smithi046.lplrtl (mgr.14184) 576 : audit [DBG] from='client.14902 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:49 smithi142 bash[20802]: cluster 2024-02-23T00:40:49.593169+0000 mgr.smithi046.lplrtl (mgr.14184) 577 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:40:50.332 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:51.870 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:51 smithi046 bash[16275]: cluster 2024-02-23T00:40:51.594318+0000 mgr.smithi046.lplrtl (mgr.14184) 578 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:52.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:51 smithi142 bash[20802]: cluster 2024-02-23T00:40:51.594318+0000 mgr.smithi046.lplrtl (mgr.14184) 578 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:53.575 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:53.575 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:53.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:53 smithi046 bash[16275]: audit 2024-02-23T00:40:53.562395+0000 mgr.smithi046.lplrtl (mgr.14184) 579 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:53.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:53 smithi046 bash[16275]: cluster 2024-02-23T00:40:53.595829+0000 mgr.smithi046.lplrtl (mgr.14184) 580 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:53 smithi142 bash[20802]: audit 2024-02-23T00:40:53.562395+0000 mgr.smithi046.lplrtl (mgr.14184) 579 : audit [DBG] from='client.14906 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:53 smithi142 bash[20802]: cluster 2024-02-23T00:40:53.595829+0000 mgr.smithi046.lplrtl (mgr.14184) 580 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:54.171 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:55.173 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:55.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:55 smithi046 bash[16275]: cluster 2024-02-23T00:40:55.597707+0000 mgr.smithi046.lplrtl (mgr.14184) 581 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:55 smithi142 bash[20802]: cluster 2024-02-23T00:40:55.597707+0000 mgr.smithi046.lplrtl (mgr.14184) 581 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:57.942 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:57 smithi046 bash[16275]: cluster 2024-02-23T00:40:57.599284+0000 mgr.smithi046.lplrtl (mgr.14184) 582 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:58.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:57 smithi142 bash[20802]: cluster 2024-02-23T00:40:57.599284+0000 mgr.smithi046.lplrtl (mgr.14184) 582 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:40:58.310 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:40:58.311 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:40:58.898 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:40:58.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:58 smithi046 bash[16275]: audit 2024-02-23T00:40:58.293008+0000 mgr.smithi046.lplrtl (mgr.14184) 583 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:58 smithi142 bash[20802]: audit 2024-02-23T00:40:58.293008+0000 mgr.smithi046.lplrtl (mgr.14184) 583 : audit [DBG] from='client.14910 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:40:59.899 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:40:59.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:40:59 smithi046 bash[16275]: cluster 2024-02-23T00:40:59.601094+0000 mgr.smithi046.lplrtl (mgr.14184) 584 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:00.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:40:59 smithi142 bash[20802]: cluster 2024-02-23T00:40:59.601094+0000 mgr.smithi046.lplrtl (mgr.14184) 584 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:01.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:01 smithi046 bash[16275]: cluster 2024-02-23T00:41:01.602480+0000 mgr.smithi046.lplrtl (mgr.14184) 585 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:02.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:01 smithi142 bash[20802]: cluster 2024-02-23T00:41:01.602480+0000 mgr.smithi046.lplrtl (mgr.14184) 585 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:03.139 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:03.140 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:03.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:03.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:03 smithi046 bash[16275]: audit 2024-02-23T00:41:03.119889+0000 mgr.smithi046.lplrtl (mgr.14184) 586 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:03.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:03 smithi046 bash[16275]: cluster 2024-02-23T00:41:03.604058+0000 mgr.smithi046.lplrtl (mgr.14184) 587 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:04.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:03 smithi142 bash[20802]: audit 2024-02-23T00:41:03.119889+0000 mgr.smithi046.lplrtl (mgr.14184) 586 : audit [DBG] from='client.14914 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:04.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:03 smithi142 bash[20802]: cluster 2024-02-23T00:41:03.604058+0000 mgr.smithi046.lplrtl (mgr.14184) 587 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:04.784 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:05.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:05 smithi046 bash[16275]: cluster 2024-02-23T00:41:05.605087+0000 mgr.smithi046.lplrtl (mgr.14184) 588 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:06.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:05 smithi142 bash[20802]: cluster 2024-02-23T00:41:05.605087+0000 mgr.smithi046.lplrtl (mgr.14184) 588 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:07.779 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:07.779 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:08.399 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:08 smithi046 bash[16275]: cluster 2024-02-23T00:41:07.606582+0000 mgr.smithi046.lplrtl (mgr.14184) 589 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:08 smithi046 bash[16275]: audit 2024-02-23T00:41:07.766116+0000 mgr.smithi046.lplrtl (mgr.14184) 590 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:09.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:08 smithi142 bash[20802]: cluster 2024-02-23T00:41:07.606582+0000 mgr.smithi046.lplrtl (mgr.14184) 589 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:09.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:08 smithi142 bash[20802]: audit 2024-02-23T00:41:07.766116+0000 mgr.smithi046.lplrtl (mgr.14184) 590 : audit [DBG] from='client.14918 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:09.400 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:10 smithi046 bash[16275]: cluster 2024-02-23T00:41:09.607965+0000 mgr.smithi046.lplrtl (mgr.14184) 591 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:10 smithi142 bash[20802]: cluster 2024-02-23T00:41:09.607965+0000 mgr.smithi046.lplrtl (mgr.14184) 591 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:12.286 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:12.286 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:12.901 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:12 smithi046 bash[16275]: cluster 2024-02-23T00:41:11.608651+0000 mgr.smithi046.lplrtl (mgr.14184) 592 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:12 smithi046 bash[16275]: audit 2024-02-23T00:41:12.268634+0000 mgr.smithi046.lplrtl (mgr.14184) 593 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:13.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:12 smithi142 bash[20802]: cluster 2024-02-23T00:41:11.608651+0000 mgr.smithi046.lplrtl (mgr.14184) 592 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:13.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:12 smithi142 bash[20802]: audit 2024-02-23T00:41:12.268634+0000 mgr.smithi046.lplrtl (mgr.14184) 593 : audit [DBG] from='client.14922 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:13.902 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:14.942 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:14 smithi046 bash[16275]: cluster 2024-02-23T00:41:13.610377+0000 mgr.smithi046.lplrtl (mgr.14184) 594 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:14 smithi142 bash[20802]: cluster 2024-02-23T00:41:13.610377+0000 mgr.smithi046.lplrtl (mgr.14184) 594 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:15.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:15 smithi046 bash[16275]: audit 2024-02-23T00:41:15.567946+0000 mon.smithi046 (mon.0) 812 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:41:16.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:15 smithi142 bash[20802]: audit 2024-02-23T00:41:15.567946+0000 mon.smithi046 (mon.0) 812 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: cluster 2024-02-23T00:41:15.611693+0000 mgr.smithi046.lplrtl (mgr.14184) 595 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.885133+0000 mon.smithi046 (mon.0) 813 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.886520+0000 mon.smithi046 (mon.0) 814 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.887710+0000 mon.smithi046 (mon.0) 815 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.888906+0000 mon.smithi046 (mon.0) 816 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: cephadm 2024-02-23T00:41:15.889896+0000 mgr.smithi046.lplrtl (mgr.14184) 596 : cephadm [INF] Adjusting osd_memory_target on smithi046 to 3018M 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.899139+0000 mon.smithi046 (mon.0) 817 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.899474+0000 mon.smithi046 (mon.0) 818 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.901051+0000 mon.smithi046 (mon.0) 819 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.902182+0000 mon.smithi046 (mon.0) 820 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.903397+0000 mon.smithi046 (mon.0) 821 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: cephadm 2024-02-23T00:41:15.904267+0000 mgr.smithi046.lplrtl (mgr.14184) 597 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3529M 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.908721+0000 mon.smithi046 (mon.0) 822 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.909937+0000 mon.smithi046 (mon.0) 823 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.911051+0000 mon.smithi046 (mon.0) 824 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.917245+0000 mon.smithi046 (mon.0) 825 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: cluster 2024-02-23T00:41:15.917928+0000 mgr.smithi046.lplrtl (mgr.14184) 598 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.922796+0000 mon.smithi046 (mon.0) 826 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:41:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: audit 2024-02-23T00:41:15.937011+0000 mon.smithi046 (mon.0) 827 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:16.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:16 smithi046 bash[16275]: cephadm 2024-02-23T00:41:15.940571+0000 mgr.smithi046.lplrtl (mgr.14184) 599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.npsmrx on smithi142 2024-02-23T00:41:16.915 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:16.915 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:39:07.565677Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pewzof on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: cluster 2024-02-23T00:41:15.611693+0000 mgr.smithi046.lplrtl (mgr.14184) 595 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.885133+0000 mon.smithi046 (mon.0) 813 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.886520+0000 mon.smithi046 (mon.0) 814 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.887710+0000 mon.smithi046 (mon.0) 815 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.888906+0000 mon.smithi046 (mon.0) 816 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: cephadm 2024-02-23T00:41:15.889896+0000 mgr.smithi046.lplrtl (mgr.14184) 596 : cephadm [INF] Adjusting osd_memory_target on smithi046 to 3018M 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.899139+0000 mon.smithi046 (mon.0) 817 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.899474+0000 mon.smithi046 (mon.0) 818 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.901051+0000 mon.smithi046 (mon.0) 819 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.902182+0000 mon.smithi046 (mon.0) 820 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.903397+0000 mon.smithi046 (mon.0) 821 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-23T00:41:17.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: cephadm 2024-02-23T00:41:15.904267+0000 mgr.smithi046.lplrtl (mgr.14184) 597 : cephadm [INF] Adjusting osd_memory_target on smithi142 to 3529M 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.908721+0000 mon.smithi046 (mon.0) 822 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.909937+0000 mon.smithi046 (mon.0) 823 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.911051+0000 mon.smithi046 (mon.0) 824 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.917245+0000 mon.smithi046 (mon.0) 825 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: cluster 2024-02-23T00:41:15.917928+0000 mgr.smithi046.lplrtl (mgr.14184) 598 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:17.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.922796+0000 mon.smithi046 (mon.0) 826 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:41:17.013 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: audit 2024-02-23T00:41:15.937011+0000 mon.smithi046 (mon.0) 827 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:17.013 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:16 smithi142 bash[20802]: cephadm 2024-02-23T00:41:15.940571+0000 mgr.smithi046.lplrtl (mgr.14184) 599 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.npsmrx on smithi142 2024-02-23T00:41:17.565 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:17.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:17 smithi046 bash[16275]: audit 2024-02-23T00:41:16.898956+0000 mgr.smithi046.lplrtl (mgr.14184) 600 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:17.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:17 smithi046 bash[16275]: cluster 2024-02-23T00:41:16.914771+0000 mon.smithi046 (mon.0) 828 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:41:17.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:17 smithi046 bash[16275]: cluster 2024-02-23T00:41:16.914866+0000 mon.smithi046 (mon.0) 829 : cluster [INF] Cluster is now healthy 2024-02-23T00:41:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:17 smithi142 bash[20802]: audit 2024-02-23T00:41:16.898956+0000 mgr.smithi046.lplrtl (mgr.14184) 600 : audit [DBG] from='client.14926 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:17 smithi142 bash[20802]: cluster 2024-02-23T00:41:16.914771+0000 mon.smithi046 (mon.0) 828 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:41:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:17 smithi142 bash[20802]: cluster 2024-02-23T00:41:16.914866+0000 mon.smithi046 (mon.0) 829 : cluster [INF] Cluster is now healthy 2024-02-23T00:41:18.566 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:18 smithi046 bash[16275]: cluster 2024-02-23T00:41:17.919247+0000 mgr.smithi046.lplrtl (mgr.14184) 601 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:18 smithi142 bash[20802]: cluster 2024-02-23T00:41:17.919247+0000 mgr.smithi046.lplrtl (mgr.14184) 601 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:19 smithi142 bash[20802]: audit 2024-02-23T00:41:19.802537+0000 mon.smithi046 (mon.0) 830 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.npsmrx"}]: dispatch 2024-02-23T00:41:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:19 smithi046 bash[16275]: audit 2024-02-23T00:41:19.802537+0000 mon.smithi046 (mon.0) 830 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.npsmrx"}]: dispatch 2024-02-23T00:41:21.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: cephadm 2024-02-23T00:41:19.801135+0000 mgr.smithi046.lplrtl (mgr.14184) 602 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.591 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.591 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.591 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.591 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.591 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.592 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: cephadm 2024-02-23T00:41:19.801676+0000 mgr.smithi046.lplrtl (mgr.14184) 603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: cephadm 2024-02-23T00:41:19.804603+0000 mgr.smithi046.lplrtl (mgr.14184) 604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.593 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: cephadm 2024-02-23T00:41:19.807909+0000 mgr.smithi046.lplrtl (mgr.14184) 605 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.cmbijz on smithi046 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: cluster 2024-02-23T00:41:19.920590+0000 mgr.smithi046.lplrtl (mgr.14184) 606 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:21.594 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:21 smithi046 bash[16275]: audit 2024-02-23T00:41:20.322720+0000 mon.smithi046 (mon.0) 831 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:21.648 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:21.648 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:11.753785Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.nthswb on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-nthswb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.nthswb\nDeploy daemon haproxy.nfs.foo.smithi142.nthswb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.559101Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.wdnihw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-wdnihw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.wdnihw\nDeploy daemon haproxy.nfs.foo.smithi046.wdnihw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:40:15.561372Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.wfbwfp on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:21.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: cephadm 2024-02-23T00:41:19.801135+0000 mgr.smithi046.lplrtl (mgr.14184) 602 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:41:21.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: cephadm 2024-02-23T00:41:19.801676+0000 mgr.smithi046.lplrtl (mgr.14184) 603 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: cephadm 2024-02-23T00:41:19.804603+0000 mgr.smithi046.lplrtl (mgr.14184) 604 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.npsmrx ... 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: cephadm 2024-02-23T00:41:19.807909+0000 mgr.smithi046.lplrtl (mgr.14184) 605 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.cmbijz on smithi046 2024-02-23T00:41:21.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: cluster 2024-02-23T00:41:19.920590+0000 mgr.smithi046.lplrtl (mgr.14184) 606 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:21.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:21 smithi142 bash[20802]: audit 2024-02-23T00:41:20.322720+0000 mon.smithi046 (mon.0) 831 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:22.245 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:23.246 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:23.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:23 smithi046 bash[16275]: audit 2024-02-23T00:41:21.629253+0000 mgr.smithi046.lplrtl (mgr.14184) 607 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:23 smithi046 bash[16275]: cluster 2024-02-23T00:41:21.921808+0000 mgr.smithi046.lplrtl (mgr.14184) 608 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:23 smithi142 bash[20802]: audit 2024-02-23T00:41:21.629253+0000 mgr.smithi046.lplrtl (mgr.14184) 607 : audit [DBG] from='client.14930 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:23 smithi142 bash[20802]: cluster 2024-02-23T00:41:21.921808+0000 mgr.smithi046.lplrtl (mgr.14184) 608 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:24.644 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:24 smithi046 bash[16275]: audit 2024-02-23T00:41:24.130153+0000 mon.smithi046 (mon.0) 832 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.cmbijz"}]: dispatch 2024-02-23T00:41:24.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:24 smithi142 bash[20802]: audit 2024-02-23T00:41:24.130153+0000 mon.smithi046 (mon.0) 832 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.cmbijz"}]: dispatch 2024-02-23T00:41:25.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cluster 2024-02-23T00:41:23.923013+0000 mgr.smithi046.lplrtl (mgr.14184) 609 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:25.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cephadm 2024-02-23T00:41:24.129384+0000 mgr.smithi046.lplrtl (mgr.14184) 610 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:41:25.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cephadm 2024-02-23T00:41:24.129661+0000 mgr.smithi046.lplrtl (mgr.14184) 611 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cephadm 2024-02-23T00:41:24.131572+0000 mgr.smithi046.lplrtl (mgr.14184) 612 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cephadm 2024-02-23T00:41:24.136028+0000 mgr.smithi046.lplrtl (mgr.14184) 613 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cephadm 2024-02-23T00:41:24.139750+0000 mgr.smithi046.lplrtl (mgr.14184) 614 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:41:25.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cluster 2024-02-23T00:41:24.141537+0000 mgr.smithi046.lplrtl (mgr.14184) 615 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-23T00:41:25.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:25 smithi046 bash[16275]: cluster 2024-02-23T00:41:24.328513+0000 mon.smithi046 (mon.0) 833 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cluster 2024-02-23T00:41:23.923013+0000 mgr.smithi046.lplrtl (mgr.14184) 609 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cephadm 2024-02-23T00:41:24.129384+0000 mgr.smithi046.lplrtl (mgr.14184) 610 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cephadm 2024-02-23T00:41:24.129661+0000 mgr.smithi046.lplrtl (mgr.14184) 611 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cephadm 2024-02-23T00:41:24.131572+0000 mgr.smithi046.lplrtl (mgr.14184) 612 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.cmbijz ... 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cephadm 2024-02-23T00:41:24.136028+0000 mgr.smithi046.lplrtl (mgr.14184) 613 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cephadm 2024-02-23T00:41:24.139750+0000 mgr.smithi046.lplrtl (mgr.14184) 614 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:41:25.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cluster 2024-02-23T00:41:24.141537+0000 mgr.smithi046.lplrtl (mgr.14184) 615 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-23T00:41:25.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:25 smithi142 bash[20802]: cluster 2024-02-23T00:41:24.328513+0000 mon.smithi046 (mon.0) 833 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:41:26.440 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:26.440 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:27.099 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:27.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:27 smithi046 bash[16275]: cluster 2024-02-23T00:41:26.142930+0000 mgr.smithi046.lplrtl (mgr.14184) 616 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:27 smithi046 bash[16275]: audit 2024-02-23T00:41:26.426912+0000 mgr.smithi046.lplrtl (mgr.14184) 617 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:27.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:27 smithi142 bash[20802]: cluster 2024-02-23T00:41:26.142930+0000 mgr.smithi046.lplrtl (mgr.14184) 616 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:27 smithi142 bash[20802]: audit 2024-02-23T00:41:26.426912+0000 mgr.smithi046.lplrtl (mgr.14184) 617 : audit [DBG] from='client.14934 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:28.100 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:29.483 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:29 smithi046 bash[16275]: cluster 2024-02-23T00:41:28.144020+0000 mgr.smithi046.lplrtl (mgr.14184) 618 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:29.483 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:29 smithi046 bash[16275]: audit 2024-02-23T00:41:28.671668+0000 mon.smithi046 (mon.0) 834 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:29.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:29 smithi142 bash[20802]: cluster 2024-02-23T00:41:28.144020+0000 mgr.smithi046.lplrtl (mgr.14184) 618 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:29.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:29 smithi142 bash[20802]: audit 2024-02-23T00:41:28.671668+0000 mon.smithi046 (mon.0) 834 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:31.196 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:31.196 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:31.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:31 smithi046 bash[16275]: cluster 2024-02-23T00:41:30.146072+0000 mgr.smithi046.lplrtl (mgr.14184) 619 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:31.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:31 smithi142 bash[20802]: cluster 2024-02-23T00:41:30.146072+0000 mgr.smithi046.lplrtl (mgr.14184) 619 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:31.799 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:32.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:32 smithi046 bash[16275]: audit 2024-02-23T00:41:31.177915+0000 mgr.smithi046.lplrtl (mgr.14184) 620 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:32.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:32 smithi142 bash[20802]: audit 2024-02-23T00:41:31.177915+0000 mgr.smithi046.lplrtl (mgr.14184) 620 : audit [DBG] from='client.14938 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:32.800 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:33 smithi046 bash[16275]: cluster 2024-02-23T00:41:32.147602+0000 mgr.smithi046.lplrtl (mgr.14184) 621 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:33 smithi142 bash[20802]: cluster 2024-02-23T00:41:32.147602+0000 mgr.smithi046.lplrtl (mgr.14184) 621 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:35 smithi046 bash[16275]: cluster 2024-02-23T00:41:34.149038+0000 mgr.smithi046.lplrtl (mgr.14184) 622 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:35 smithi046 bash[16275]: audit 2024-02-23T00:41:35.323524+0000 mon.smithi046 (mon.0) 835 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:35.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:35 smithi142 bash[20802]: cluster 2024-02-23T00:41:34.149038+0000 mgr.smithi046.lplrtl (mgr.14184) 622 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:41:35.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:35 smithi142 bash[20802]: audit 2024-02-23T00:41:35.323524+0000 mon.smithi046 (mon.0) 835 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:41:35.859 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:35.859 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:36.478 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:37.479 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:37 smithi046 bash[16275]: audit 2024-02-23T00:41:35.840754+0000 mgr.smithi046.lplrtl (mgr.14184) 623 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:37 smithi046 bash[16275]: cluster 2024-02-23T00:41:36.150644+0000 mgr.smithi046.lplrtl (mgr.14184) 624 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:37 smithi142 bash[20802]: audit 2024-02-23T00:41:35.840754+0000 mgr.smithi046.lplrtl (mgr.14184) 623 : audit [DBG] from='client.14942 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:37 smithi142 bash[20802]: cluster 2024-02-23T00:41:36.150644+0000 mgr.smithi046.lplrtl (mgr.14184) 624 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:39.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:39 smithi046 bash[16275]: cluster 2024-02-23T00:41:38.152206+0000 mgr.smithi046.lplrtl (mgr.14184) 625 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:39.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:39 smithi142 bash[20802]: cluster 2024-02-23T00:41:38.152206+0000 mgr.smithi046.lplrtl (mgr.14184) 625 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:40.581 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:40.581 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:41.163 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:41.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:41 smithi046 bash[16275]: cluster 2024-02-23T00:41:40.154293+0000 mgr.smithi046.lplrtl (mgr.14184) 626 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:41.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:41 smithi046 bash[16275]: audit 2024-02-23T00:41:40.560029+0000 mgr.smithi046.lplrtl (mgr.14184) 627 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:41.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:41 smithi142 bash[20802]: cluster 2024-02-23T00:41:40.154293+0000 mgr.smithi046.lplrtl (mgr.14184) 626 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:41.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:41 smithi142 bash[20802]: audit 2024-02-23T00:41:40.560029+0000 mgr.smithi046.lplrtl (mgr.14184) 627 : audit [DBG] from='client.14946 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:42.164 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:43.485 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:43 smithi046 bash[16275]: cluster 2024-02-23T00:41:42.155827+0000 mgr.smithi046.lplrtl (mgr.14184) 628 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:43.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:43 smithi142 bash[20802]: cluster 2024-02-23T00:41:42.155827+0000 mgr.smithi046.lplrtl (mgr.14184) 628 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:45.167 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:45.167 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:45.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:45 smithi046 bash[16275]: cluster 2024-02-23T00:41:44.157271+0000 mgr.smithi046.lplrtl (mgr.14184) 629 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:45.735 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:45 smithi142 bash[20802]: cluster 2024-02-23T00:41:44.157271+0000 mgr.smithi046.lplrtl (mgr.14184) 629 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:46.735 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:46.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:46 smithi046 bash[16275]: audit 2024-02-23T00:41:45.149545+0000 mgr.smithi046.lplrtl (mgr.14184) 630 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:46.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:46 smithi142 bash[20802]: audit 2024-02-23T00:41:45.149545+0000 mgr.smithi046.lplrtl (mgr.14184) 630 : audit [DBG] from='client.14950 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:47.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:47 smithi046 bash[16275]: cluster 2024-02-23T00:41:46.159309+0000 mgr.smithi046.lplrtl (mgr.14184) 631 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:47 smithi142 bash[20802]: cluster 2024-02-23T00:41:46.159309+0000 mgr.smithi046.lplrtl (mgr.14184) 631 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:49.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:49 smithi046 bash[16275]: cluster 2024-02-23T00:41:48.160962+0000 mgr.smithi046.lplrtl (mgr.14184) 632 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:49.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:49 smithi142 bash[20802]: cluster 2024-02-23T00:41:48.160962+0000 mgr.smithi046.lplrtl (mgr.14184) 632 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:49.936 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:49.936 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:50.519 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:51.521 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:51 smithi046 bash[16275]: audit 2024-02-23T00:41:49.915704+0000 mgr.smithi046.lplrtl (mgr.14184) 633 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:51 smithi046 bash[16275]: cluster 2024-02-23T00:41:50.162134+0000 mgr.smithi046.lplrtl (mgr.14184) 634 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:51 smithi142 bash[20802]: audit 2024-02-23T00:41:49.915704+0000 mgr.smithi046.lplrtl (mgr.14184) 633 : audit [DBG] from='client.14954 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:51 smithi142 bash[20802]: cluster 2024-02-23T00:41:50.162134+0000 mgr.smithi046.lplrtl (mgr.14184) 634 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:41:53.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:53 smithi046 bash[16275]: cluster 2024-02-23T00:41:52.163075+0000 mgr.smithi046.lplrtl (mgr.14184) 635 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:53.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:53 smithi142 bash[20802]: cluster 2024-02-23T00:41:52.163075+0000 mgr.smithi046.lplrtl (mgr.14184) 635 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:54.611 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:54.612 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:55.160 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:55.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:55 smithi046 bash[16275]: cluster 2024-02-23T00:41:54.164006+0000 mgr.smithi046.lplrtl (mgr.14184) 636 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:55.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:55 smithi046 bash[16275]: audit 2024-02-23T00:41:54.591289+0000 mgr.smithi046.lplrtl (mgr.14184) 637 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:55 smithi142 bash[20802]: cluster 2024-02-23T00:41:54.164006+0000 mgr.smithi046.lplrtl (mgr.14184) 636 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:55.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:55 smithi142 bash[20802]: audit 2024-02-23T00:41:54.591289+0000 mgr.smithi046.lplrtl (mgr.14184) 637 : audit [DBG] from='client.14958 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:41:56.161 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:41:57.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:57 smithi046 bash[16275]: cluster 2024-02-23T00:41:56.165827+0000 mgr.smithi046.lplrtl (mgr.14184) 638 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:57.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:57 smithi142 bash[20802]: cluster 2024-02-23T00:41:56.165827+0000 mgr.smithi046.lplrtl (mgr.14184) 638 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:59.147 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:41:59.147 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:41:59.671 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:41:59.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:41:59 smithi046 bash[16275]: cluster 2024-02-23T00:41:58.166930+0000 mgr.smithi046.lplrtl (mgr.14184) 639 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:41:59.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:41:59 smithi142 bash[20802]: cluster 2024-02-23T00:41:58.166930+0000 mgr.smithi046.lplrtl (mgr.14184) 639 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:00.672 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:00.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:00 smithi046 bash[16275]: audit 2024-02-23T00:41:59.133215+0000 mgr.smithi046.lplrtl (mgr.14184) 640 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:00.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:00 smithi142 bash[20802]: audit 2024-02-23T00:41:59.133215+0000 mgr.smithi046.lplrtl (mgr.14184) 640 : audit [DBG] from='client.14962 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:01.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:01 smithi046 bash[16275]: cluster 2024-02-23T00:42:00.168899+0000 mgr.smithi046.lplrtl (mgr.14184) 641 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:01.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:01 smithi142 bash[20802]: cluster 2024-02-23T00:42:00.168899+0000 mgr.smithi046.lplrtl (mgr.14184) 641 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:03.740 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:03.740 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:03.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:03 smithi046 bash[16275]: cluster 2024-02-23T00:42:02.169723+0000 mgr.smithi046.lplrtl (mgr.14184) 642 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:03 smithi142 bash[20802]: cluster 2024-02-23T00:42:02.169723+0000 mgr.smithi046.lplrtl (mgr.14184) 642 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:04.348 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:05.349 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:05.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:05 smithi046 bash[16275]: audit 2024-02-23T00:42:03.718268+0000 mgr.smithi046.lplrtl (mgr.14184) 643 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:05.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:05 smithi046 bash[16275]: cluster 2024-02-23T00:42:04.171202+0000 mgr.smithi046.lplrtl (mgr.14184) 644 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:05 smithi142 bash[20802]: audit 2024-02-23T00:42:03.718268+0000 mgr.smithi046.lplrtl (mgr.14184) 643 : audit [DBG] from='client.14966 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:05 smithi142 bash[20802]: cluster 2024-02-23T00:42:04.171202+0000 mgr.smithi046.lplrtl (mgr.14184) 644 : cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:07.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:07 smithi142 bash[20802]: cluster 2024-02-23T00:42:06.172176+0000 mgr.smithi046.lplrtl (mgr.14184) 645 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:07.794 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:07 smithi046 bash[16275]: cluster 2024-02-23T00:42:06.172176+0000 mgr.smithi046.lplrtl (mgr.14184) 645 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:08.255 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:08.256 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:08.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:09.827 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:09.840 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:09 smithi046 bash[16275]: cluster 2024-02-23T00:42:08.173762+0000 mgr.smithi046.lplrtl (mgr.14184) 646 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:09.840 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:09 smithi046 bash[16275]: audit 2024-02-23T00:42:08.236480+0000 mgr.smithi046.lplrtl (mgr.14184) 647 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:10.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:09 smithi142 bash[20802]: cluster 2024-02-23T00:42:08.173762+0000 mgr.smithi046.lplrtl (mgr.14184) 646 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:10.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:09 smithi142 bash[20802]: audit 2024-02-23T00:42:08.236480+0000 mgr.smithi046.lplrtl (mgr.14184) 647 : audit [DBG] from='client.14970 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:11.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:11 smithi046 bash[16275]: cluster 2024-02-23T00:42:10.175869+0000 mgr.smithi046.lplrtl (mgr.14184) 648 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:12.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:11 smithi142 bash[20802]: cluster 2024-02-23T00:42:10.175869+0000 mgr.smithi046.lplrtl (mgr.14184) 648 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:12.927 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:12.928 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:13.493 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:13 smithi046 bash[16275]: cluster 2024-02-23T00:42:12.177526+0000 mgr.smithi046.lplrtl (mgr.14184) 649 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:13 smithi142 bash[20802]: cluster 2024-02-23T00:42:12.177526+0000 mgr.smithi046.lplrtl (mgr.14184) 649 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:14.495 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:14 smithi046 bash[16275]: audit 2024-02-23T00:42:12.906501+0000 mgr.smithi046.lplrtl (mgr.14184) 650 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:14 smithi142 bash[20802]: audit 2024-02-23T00:42:12.906501+0000 mgr.smithi046.lplrtl (mgr.14184) 650 : audit [DBG] from='client.14974 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:15.775 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:15 smithi046 bash[16275]: cluster 2024-02-23T00:42:14.179010+0000 mgr.smithi046.lplrtl (mgr.14184) 651 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:16.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:15 smithi142 bash[20802]: cluster 2024-02-23T00:42:14.179010+0000 mgr.smithi046.lplrtl (mgr.14184) 651 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:17.457 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:17.457 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:17.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:17 smithi046 bash[16275]: cluster 2024-02-23T00:42:16.179975+0000 mgr.smithi046.lplrtl (mgr.14184) 652 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:18.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:17 smithi142 bash[20802]: cluster 2024-02-23T00:42:16.179975+0000 mgr.smithi046.lplrtl (mgr.14184) 652 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:18.089 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:18 smithi046 bash[16275]: audit 2024-02-23T00:42:17.437855+0000 mgr.smithi046.lplrtl (mgr.14184) 653 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:18 smithi142 bash[20802]: audit 2024-02-23T00:42:17.437855+0000 mgr.smithi046.lplrtl (mgr.14184) 653 : audit [DBG] from='client.14978 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:19.090 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:19 smithi046 bash[16275]: cluster 2024-02-23T00:42:18.181490+0000 mgr.smithi046.lplrtl (mgr.14184) 654 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:19 smithi142 bash[20802]: cluster 2024-02-23T00:42:18.181490+0000 mgr.smithi046.lplrtl (mgr.14184) 654 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:21.867 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:21 smithi046 bash[16275]: cluster 2024-02-23T00:42:20.183452+0000 mgr.smithi046.lplrtl (mgr.14184) 655 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:21 smithi142 bash[20802]: cluster 2024-02-23T00:42:20.183452+0000 mgr.smithi046.lplrtl (mgr.14184) 655 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:22.228 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:22.228 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:22.792 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:23.793 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:23.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:23 smithi046 bash[16275]: cluster 2024-02-23T00:42:22.184879+0000 mgr.smithi046.lplrtl (mgr.14184) 656 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:23.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:23 smithi046 bash[16275]: audit 2024-02-23T00:42:22.206566+0000 mgr.smithi046.lplrtl (mgr.14184) 657 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:23 smithi142 bash[20802]: cluster 2024-02-23T00:42:22.184879+0000 mgr.smithi046.lplrtl (mgr.14184) 656 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:24.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:23 smithi142 bash[20802]: audit 2024-02-23T00:42:22.206566+0000 mgr.smithi046.lplrtl (mgr.14184) 657 : audit [DBG] from='client.14982 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:24.954 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.144111+0000 mon.smithi046 (mon.0) 836 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:42:24.954 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.477320+0000 mon.smithi046 (mon.0) 837 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:42:24.954 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.478668+0000 mon.smithi046 (mon.0) 838 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:42:24.955 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.485755+0000 mon.smithi046 (mon.0) 839 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:24.955 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.493859+0000 mon.smithi046 (mon.0) 840 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:42:24.955 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:24 smithi046 bash[16275]: audit 2024-02-23T00:42:24.510779+0000 mon.smithi046 (mon.0) 841 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.144111+0000 mon.smithi046 (mon.0) 836 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.477320+0000 mon.smithi046 (mon.0) 837 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.478668+0000 mon.smithi046 (mon.0) 838 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.485755+0000 mon.smithi046 (mon.0) 839 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.493859+0000 mon.smithi046 (mon.0) 840 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:42:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:24 smithi142 bash[20802]: audit 2024-02-23T00:42:24.510779+0000 mon.smithi046 (mon.0) 841 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:25.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:25 smithi046 bash[16275]: cluster 2024-02-23T00:42:24.185999+0000 mgr.smithi046.lplrtl (mgr.14184) 658 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:25.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:25 smithi046 bash[16275]: cluster 2024-02-23T00:42:24.486744+0000 mgr.smithi046.lplrtl (mgr.14184) 659 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:25.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:25 smithi046 bash[16275]: cephadm 2024-02-23T00:42:24.514845+0000 mgr.smithi046.lplrtl (mgr.14184) 660 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.wbgizp on smithi142 2024-02-23T00:42:25.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:25 smithi046 bash[16275]: cluster 2024-02-23T00:42:24.558143+0000 mon.smithi046 (mon.0) 842 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:42:25.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:25 smithi046 bash[16275]: cluster 2024-02-23T00:42:24.558205+0000 mon.smithi046 (mon.0) 843 : cluster [INF] Cluster is now healthy 2024-02-23T00:42:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:25 smithi142 bash[20802]: cluster 2024-02-23T00:42:24.185999+0000 mgr.smithi046.lplrtl (mgr.14184) 658 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:25 smithi142 bash[20802]: cluster 2024-02-23T00:42:24.486744+0000 mgr.smithi046.lplrtl (mgr.14184) 659 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:25 smithi142 bash[20802]: cephadm 2024-02-23T00:42:24.514845+0000 mgr.smithi046.lplrtl (mgr.14184) 660 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.wbgizp on smithi142 2024-02-23T00:42:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:25 smithi142 bash[20802]: cluster 2024-02-23T00:42:24.558143+0000 mon.smithi046 (mon.0) 842 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:42:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:25 smithi142 bash[20802]: cluster 2024-02-23T00:42:24.558205+0000 mon.smithi046 (mon.0) 843 : cluster [INF] Cluster is now healthy 2024-02-23T00:42:27.082 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:27.082 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:40:15.563534Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.guiwga on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:27.660 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:27.931 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:27 smithi142 bash[20802]: cluster 2024-02-23T00:42:26.487515+0000 mgr.smithi046.lplrtl (mgr.14184) 661 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:27.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:27 smithi046 bash[16275]: cluster 2024-02-23T00:42:26.487515+0000 mgr.smithi046.lplrtl (mgr.14184) 661 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:28.662 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:28.674 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:28 smithi046 bash[16275]: audit 2024-02-23T00:42:27.068444+0000 mgr.smithi046.lplrtl (mgr.14184) 662 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:28.674 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:28 smithi046 bash[16275]: audit 2024-02-23T00:42:28.410943+0000 mon.smithi046 (mon.0) 844 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.wbgizp"}]: dispatch 2024-02-23T00:42:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:28 smithi142 bash[20802]: audit 2024-02-23T00:42:27.068444+0000 mgr.smithi046.lplrtl (mgr.14184) 662 : audit [DBG] from='client.14986 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:28 smithi142 bash[20802]: audit 2024-02-23T00:42:28.410943+0000 mon.smithi046 (mon.0) 844 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.wbgizp"}]: dispatch 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: cephadm 2024-02-23T00:42:28.409772+0000 mgr.smithi046.lplrtl (mgr.14184) 663 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:29.924 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: cephadm 2024-02-23T00:42:28.410283+0000 mgr.smithi046.lplrtl (mgr.14184) 664 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: cephadm 2024-02-23T00:42:28.412698+0000 mgr.smithi046.lplrtl (mgr.14184) 665 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:29.926 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:29.927 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:29.927 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:29.927 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: cephadm 2024-02-23T00:42:28.417937+0000 mgr.smithi046.lplrtl (mgr.14184) 666 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.btfdps on smithi046 2024-02-23T00:42:29.927 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:29 smithi046 bash[16275]: cluster 2024-02-23T00:42:28.488809+0000 mgr.smithi046.lplrtl (mgr.14184) 667 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: cephadm 2024-02-23T00:42:28.409772+0000 mgr.smithi046.lplrtl (mgr.14184) 663 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:42:30.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: cephadm 2024-02-23T00:42:28.410283+0000 mgr.smithi046.lplrtl (mgr.14184) 664 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: cephadm 2024-02-23T00:42:28.412698+0000 mgr.smithi046.lplrtl (mgr.14184) 665 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.wbgizp ... 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: cephadm 2024-02-23T00:42:28.417937+0000 mgr.smithi046.lplrtl (mgr.14184) 666 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.btfdps on smithi046 2024-02-23T00:42:30.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:29 smithi142 bash[20802]: cluster 2024-02-23T00:42:28.488809+0000 mgr.smithi046.lplrtl (mgr.14184) 667 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:30.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:30 smithi046 bash[16275]: cluster 2024-02-23T00:42:30.490586+0000 mgr.smithi046.lplrtl (mgr.14184) 668 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:31.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:30 smithi142 bash[20802]: cluster 2024-02-23T00:42:30.490586+0000 mgr.smithi046.lplrtl (mgr.14184) 668 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:42:32.035 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:32.035 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:19.804379Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.npsmrx on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-npsmrx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.npsmrx\nDeploy daemon haproxy.nfs.foo.smithi142.npsmrx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.131239Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.cmbijz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-cmbijz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.cmbijz\nDeploy daemon haproxy.nfs.foo.smithi046.cmbijz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:41:24.135783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rtmqbx on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:32.639 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:32 smithi046 bash[16275]: audit 2024-02-23T00:42:32.288696+0000 mon.smithi046 (mon.0) 845 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.btfdps"}]: dispatch 2024-02-23T00:42:32.640 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:32.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:32 smithi142 bash[20802]: audit 2024-02-23T00:42:32.288696+0000 mon.smithi046 (mon.0) 845 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.btfdps"}]: dispatch 2024-02-23T00:42:33.641 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: audit 2024-02-23T00:42:32.021643+0000 mgr.smithi046.lplrtl (mgr.14184) 669 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cephadm 2024-02-23T00:42:32.287568+0000 mgr.smithi046.lplrtl (mgr.14184) 670 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.655 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.656 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cephadm 2024-02-23T00:42:32.288060+0000 mgr.smithi046.lplrtl (mgr.14184) 671 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cephadm 2024-02-23T00:42:32.290059+0000 mgr.smithi046.lplrtl (mgr.14184) 672 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cephadm 2024-02-23T00:42:32.292396+0000 mgr.smithi046.lplrtl (mgr.14184) 673 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cephadm 2024-02-23T00:42:32.294160+0000 mgr.smithi046.lplrtl (mgr.14184) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:42:33.658 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cluster 2024-02-23T00:42:32.295709+0000 mgr.smithi046.lplrtl (mgr.14184) 675 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:42:33.659 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:33 smithi046 bash[16275]: cluster 2024-02-23T00:42:32.347687+0000 mon.smithi046 (mon.0) 846 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: audit 2024-02-23T00:42:32.021643+0000 mgr.smithi046.lplrtl (mgr.14184) 669 : audit [DBG] from='client.14990 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cephadm 2024-02-23T00:42:32.287568+0000 mgr.smithi046.lplrtl (mgr.14184) 670 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cephadm 2024-02-23T00:42:32.288060+0000 mgr.smithi046.lplrtl (mgr.14184) 671 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cephadm 2024-02-23T00:42:32.290059+0000 mgr.smithi046.lplrtl (mgr.14184) 672 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.btfdps ... 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:42:33.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:42:33.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cephadm 2024-02-23T00:42:32.292396+0000 mgr.smithi046.lplrtl (mgr.14184) 673 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:42:33.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cephadm 2024-02-23T00:42:32.294160+0000 mgr.smithi046.lplrtl (mgr.14184) 674 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:42:33.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cluster 2024-02-23T00:42:32.295709+0000 mgr.smithi046.lplrtl (mgr.14184) 675 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:42:33.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:33 smithi142 bash[20802]: cluster 2024-02-23T00:42:32.347687+0000 mon.smithi046 (mon.0) 846 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:42:34.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:34 smithi046 bash[16275]: audit 2024-02-23T00:42:33.726863+0000 mon.smithi046 (mon.0) 847 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:34.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:34 smithi046 bash[16275]: cluster 2024-02-23T00:42:34.296752+0000 mgr.smithi046.lplrtl (mgr.14184) 676 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:42:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:34 smithi142 bash[20802]: audit 2024-02-23T00:42:33.726863+0000 mon.smithi046 (mon.0) 847 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:42:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:34 smithi142 bash[20802]: cluster 2024-02-23T00:42:34.296752+0000 mgr.smithi046.lplrtl (mgr.14184) 676 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:42:36.703 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:36.703 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:37.247 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:37 smithi046 bash[16275]: cluster 2024-02-23T00:42:36.297815+0000 mgr.smithi046.lplrtl (mgr.14184) 677 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:37 smithi142 bash[20802]: cluster 2024-02-23T00:42:36.297815+0000 mgr.smithi046.lplrtl (mgr.14184) 677 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:38.249 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:38.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:38 smithi046 bash[16275]: audit 2024-02-23T00:42:36.682527+0000 mgr.smithi046.lplrtl (mgr.14184) 678 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:38 smithi142 bash[20802]: audit 2024-02-23T00:42:36.682527+0000 mgr.smithi046.lplrtl (mgr.14184) 678 : audit [DBG] from='client.14994 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:39.516 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:39 smithi046 bash[16275]: cluster 2024-02-23T00:42:38.299586+0000 mgr.smithi046.lplrtl (mgr.14184) 679 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:39.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:39 smithi142 bash[20802]: cluster 2024-02-23T00:42:38.299586+0000 mgr.smithi046.lplrtl (mgr.14184) 679 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:41.254 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:41.254 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:41.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:41 smithi046 bash[16275]: cluster 2024-02-23T00:42:40.301792+0000 mgr.smithi046.lplrtl (mgr.14184) 680 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-02-23T00:42:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:41 smithi142 bash[20802]: cluster 2024-02-23T00:42:40.301792+0000 mgr.smithi046.lplrtl (mgr.14184) 680 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-02-23T00:42:41.863 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:42 smithi046 bash[16275]: audit 2024-02-23T00:42:41.233194+0000 mgr.smithi046.lplrtl (mgr.14184) 681 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:42.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:42 smithi142 bash[20802]: audit 2024-02-23T00:42:41.233194+0000 mgr.smithi046.lplrtl (mgr.14184) 681 : audit [DBG] from='client.14998 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:42.865 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:43.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:43 smithi046 bash[16275]: cluster 2024-02-23T00:42:42.303115+0000 mgr.smithi046.lplrtl (mgr.14184) 682 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:43.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:43 smithi142 bash[20802]: cluster 2024-02-23T00:42:42.303115+0000 mgr.smithi046.lplrtl (mgr.14184) 682 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:42:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:45 smithi046 bash[16275]: cluster 2024-02-23T00:42:44.304471+0000 mgr.smithi046.lplrtl (mgr.14184) 683 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:45 smithi142 bash[20802]: cluster 2024-02-23T00:42:44.304471+0000 mgr.smithi046.lplrtl (mgr.14184) 683 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:45.844 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:45.845 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:46.416 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:47.417 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:47.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:47 smithi046 bash[16275]: audit 2024-02-23T00:42:45.823116+0000 mgr.smithi046.lplrtl (mgr.14184) 684 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:47.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:47 smithi046 bash[16275]: cluster 2024-02-23T00:42:46.305724+0000 mgr.smithi046.lplrtl (mgr.14184) 685 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:47 smithi142 bash[20802]: audit 2024-02-23T00:42:45.823116+0000 mgr.smithi046.lplrtl (mgr.14184) 684 : audit [DBG] from='client.15002 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:47 smithi142 bash[20802]: cluster 2024-02-23T00:42:46.305724+0000 mgr.smithi046.lplrtl (mgr.14184) 685 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:49.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:49 smithi046 bash[16275]: cluster 2024-02-23T00:42:48.307458+0000 mgr.smithi046.lplrtl (mgr.14184) 686 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:49.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:49 smithi142 bash[20802]: cluster 2024-02-23T00:42:48.307458+0000 mgr.smithi046.lplrtl (mgr.14184) 686 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:50.444 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:50.444 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:51.008 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:51 smithi046 bash[16275]: cluster 2024-02-23T00:42:50.309096+0000 mgr.smithi046.lplrtl (mgr.14184) 687 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:51 smithi046 bash[16275]: audit 2024-02-23T00:42:50.430353+0000 mgr.smithi046.lplrtl (mgr.14184) 688 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:51 smithi142 bash[20802]: cluster 2024-02-23T00:42:50.309096+0000 mgr.smithi046.lplrtl (mgr.14184) 687 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:42:51.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:51 smithi142 bash[20802]: audit 2024-02-23T00:42:50.430353+0000 mgr.smithi046.lplrtl (mgr.14184) 688 : audit [DBG] from='client.15006 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:52.009 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:53.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:53 smithi046 bash[16275]: cluster 2024-02-23T00:42:52.310678+0000 mgr.smithi046.lplrtl (mgr.14184) 689 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:53.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:53 smithi142 bash[20802]: cluster 2024-02-23T00:42:52.310678+0000 mgr.smithi046.lplrtl (mgr.14184) 689 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:55.002 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:55.002 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:55.589 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:42:55.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:55 smithi046 bash[16275]: cluster 2024-02-23T00:42:54.311773+0000 mgr.smithi046.lplrtl (mgr.14184) 690 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:55 smithi142 bash[20802]: cluster 2024-02-23T00:42:54.311773+0000 mgr.smithi046.lplrtl (mgr.14184) 690 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:56.590 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:42:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:56 smithi046 bash[16275]: audit 2024-02-23T00:42:54.985274+0000 mgr.smithi046.lplrtl (mgr.14184) 691 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:56.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:56 smithi142 bash[20802]: audit 2024-02-23T00:42:54.985274+0000 mgr.smithi046.lplrtl (mgr.14184) 691 : audit [DBG] from='client.15010 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:42:57.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:57 smithi046 bash[16275]: cluster 2024-02-23T00:42:56.313629+0000 mgr.smithi046.lplrtl (mgr.14184) 692 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:57.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:57 smithi142 bash[20802]: cluster 2024-02-23T00:42:56.313629+0000 mgr.smithi046.lplrtl (mgr.14184) 692 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:59.495 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:42:59.495 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:42:59.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:42:59 smithi046 bash[16275]: cluster 2024-02-23T00:42:58.315269+0000 mgr.smithi046.lplrtl (mgr.14184) 693 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:42:59.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:42:59 smithi142 bash[20802]: cluster 2024-02-23T00:42:58.315269+0000 mgr.smithi046.lplrtl (mgr.14184) 693 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:00.064 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:00.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:00 smithi046 bash[16275]: audit 2024-02-23T00:42:59.475227+0000 mgr.smithi046.lplrtl (mgr.14184) 694 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:00.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:00 smithi142 bash[20802]: audit 2024-02-23T00:42:59.475227+0000 mgr.smithi046.lplrtl (mgr.14184) 694 : audit [DBG] from='client.15014 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:01.065 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:01.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:01 smithi046 bash[16275]: cluster 2024-02-23T00:43:00.317332+0000 mgr.smithi046.lplrtl (mgr.14184) 695 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:01 smithi142 bash[20802]: cluster 2024-02-23T00:43:00.317332+0000 mgr.smithi046.lplrtl (mgr.14184) 695 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:03.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:03 smithi046 bash[16275]: cluster 2024-02-23T00:43:02.318516+0000 mgr.smithi046.lplrtl (mgr.14184) 696 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:03 smithi142 bash[20802]: cluster 2024-02-23T00:43:02.318516+0000 mgr.smithi046.lplrtl (mgr.14184) 696 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:04.109 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:04.109 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:04.665 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:05.666 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:05.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:05 smithi046 bash[16275]: audit 2024-02-23T00:43:04.090511+0000 mgr.smithi046.lplrtl (mgr.14184) 697 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:05.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:05 smithi046 bash[16275]: cluster 2024-02-23T00:43:04.320002+0000 mgr.smithi046.lplrtl (mgr.14184) 698 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:05 smithi142 bash[20802]: audit 2024-02-23T00:43:04.090511+0000 mgr.smithi046.lplrtl (mgr.14184) 697 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:05.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:05 smithi142 bash[20802]: cluster 2024-02-23T00:43:04.320002+0000 mgr.smithi046.lplrtl (mgr.14184) 698 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:07.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:07 smithi046 bash[16275]: cluster 2024-02-23T00:43:06.321891+0000 mgr.smithi046.lplrtl (mgr.14184) 699 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:07 smithi142 bash[20802]: cluster 2024-02-23T00:43:06.321891+0000 mgr.smithi046.lplrtl (mgr.14184) 699 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:08.691 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:08.691 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:09.276 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:09.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:09 smithi046 bash[16275]: cluster 2024-02-23T00:43:08.323472+0000 mgr.smithi046.lplrtl (mgr.14184) 700 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:09 smithi142 bash[20802]: cluster 2024-02-23T00:43:08.323472+0000 mgr.smithi046.lplrtl (mgr.14184) 700 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:10.277 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:10.557 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:10 smithi046 bash[16275]: audit 2024-02-23T00:43:08.669774+0000 mgr.smithi046.lplrtl (mgr.14184) 701 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:10.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:10 smithi142 bash[20802]: audit 2024-02-23T00:43:08.669774+0000 mgr.smithi046.lplrtl (mgr.14184) 701 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:11.657 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:11 smithi046 bash[16275]: cluster 2024-02-23T00:43:10.324975+0000 mgr.smithi046.lplrtl (mgr.14184) 702 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:11.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:11 smithi142 bash[20802]: cluster 2024-02-23T00:43:10.324975+0000 mgr.smithi046.lplrtl (mgr.14184) 702 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:13.374 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:13.375 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:13.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:13 smithi046 bash[16275]: cluster 2024-02-23T00:43:12.326427+0000 mgr.smithi046.lplrtl (mgr.14184) 703 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:13.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:13 smithi142 bash[20802]: cluster 2024-02-23T00:43:12.326427+0000 mgr.smithi046.lplrtl (mgr.14184) 703 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:13.937 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:14.939 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:14.951 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:14 smithi046 bash[16275]: audit 2024-02-23T00:43:13.352854+0000 mgr.smithi046.lplrtl (mgr.14184) 704 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:14 smithi142 bash[20802]: audit 2024-02-23T00:43:13.352854+0000 mgr.smithi046.lplrtl (mgr.14184) 704 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:15.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:15 smithi046 bash[16275]: cluster 2024-02-23T00:43:14.328043+0000 mgr.smithi046.lplrtl (mgr.14184) 705 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:15 smithi142 bash[20802]: cluster 2024-02-23T00:43:14.328043+0000 mgr.smithi046.lplrtl (mgr.14184) 705 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:17.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:17 smithi046 bash[16275]: cluster 2024-02-23T00:43:16.329924+0000 mgr.smithi046.lplrtl (mgr.14184) 706 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:18.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:17 smithi142 bash[20802]: cluster 2024-02-23T00:43:16.329924+0000 mgr.smithi046.lplrtl (mgr.14184) 706 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:18.047 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:18.048 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:18.695 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:19.696 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:19 smithi046 bash[16275]: audit 2024-02-23T00:43:18.033450+0000 mgr.smithi046.lplrtl (mgr.14184) 707 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:19 smithi046 bash[16275]: cluster 2024-02-23T00:43:18.331256+0000 mgr.smithi046.lplrtl (mgr.14184) 708 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:19 smithi142 bash[20802]: audit 2024-02-23T00:43:18.033450+0000 mgr.smithi046.lplrtl (mgr.14184) 707 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:19 smithi142 bash[20802]: cluster 2024-02-23T00:43:18.331256+0000 mgr.smithi046.lplrtl (mgr.14184) 708 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:21.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:21 smithi046 bash[16275]: cluster 2024-02-23T00:43:20.342047+0000 mgr.smithi046.lplrtl (mgr.14184) 709 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:21 smithi142 bash[20802]: cluster 2024-02-23T00:43:20.342047+0000 mgr.smithi046.lplrtl (mgr.14184) 709 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:22.820 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:22.820 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:23.413 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:23 smithi046 bash[16275]: cluster 2024-02-23T00:43:22.343529+0000 mgr.smithi046.lplrtl (mgr.14184) 710 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:23 smithi142 bash[20802]: cluster 2024-02-23T00:43:22.343529+0000 mgr.smithi046.lplrtl (mgr.14184) 710 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:24.414 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:24.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:24 smithi046 bash[16275]: audit 2024-02-23T00:43:22.798712+0000 mgr.smithi046.lplrtl (mgr.14184) 711 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:24 smithi142 bash[20802]: audit 2024-02-23T00:43:22.798712+0000 mgr.smithi046.lplrtl (mgr.14184) 711 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:25.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:25 smithi046 bash[16275]: cluster 2024-02-23T00:43:24.345059+0000 mgr.smithi046.lplrtl (mgr.14184) 712 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:25 smithi142 bash[20802]: cluster 2024-02-23T00:43:24.345059+0000 mgr.smithi046.lplrtl (mgr.14184) 712 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:27.565 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:27.566 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:27.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:27 smithi046 bash[16275]: cluster 2024-02-23T00:43:26.346998+0000 mgr.smithi046.lplrtl (mgr.14184) 713 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:27 smithi142 bash[20802]: cluster 2024-02-23T00:43:26.346998+0000 mgr.smithi046.lplrtl (mgr.14184) 713 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:28.143 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:28 smithi046 bash[16275]: audit 2024-02-23T00:43:27.549650+0000 mgr.smithi046.lplrtl (mgr.14184) 714 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:28 smithi142 bash[20802]: audit 2024-02-23T00:43:27.549650+0000 mgr.smithi046.lplrtl (mgr.14184) 714 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:29.144 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:29.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:29 smithi046 bash[16275]: cluster 2024-02-23T00:43:28.348617+0000 mgr.smithi046.lplrtl (mgr.14184) 715 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:29 smithi142 bash[20802]: cluster 2024-02-23T00:43:28.348617+0000 mgr.smithi046.lplrtl (mgr.14184) 715 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:31.892 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:31 smithi046 bash[16275]: cluster 2024-02-23T00:43:30.351101+0000 mgr.smithi046.lplrtl (mgr.14184) 716 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:32.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:31 smithi142 bash[20802]: cluster 2024-02-23T00:43:30.351101+0000 mgr.smithi046.lplrtl (mgr.14184) 716 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:32.349 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:32.350 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:41:24.139541Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.iqagxy on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:32.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:32 smithi046 bash[16275]: audit 2024-02-23T00:43:32.297538+0000 mon.smithi046 (mon.0) 848 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:43:32.932 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:32 smithi142 bash[20802]: audit 2024-02-23T00:43:32.297538+0000 mon.smithi046 (mon.0) 848 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:43:33.933 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:33.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.332740+0000 mgr.smithi046.lplrtl (mgr.14184) 717 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:33.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: cluster 2024-02-23T00:43:32.352069+0000 mgr.smithi046.lplrtl (mgr.14184) 718 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:33.946 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.601824+0000 mon.smithi046 (mon.0) 849 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:43:33.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.603468+0000 mon.smithi046 (mon.0) 850 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:43:33.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.610925+0000 mon.smithi046 (mon.0) 851 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:33.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: cluster 2024-02-23T00:43:32.611974+0000 mgr.smithi046.lplrtl (mgr.14184) 719 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:33.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.621611+0000 mon.smithi046 (mon.0) 852 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:43:33.947 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:33 smithi046 bash[16275]: audit 2024-02-23T00:43:32.637184+0000 mon.smithi046 (mon.0) 853 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:34.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.332740+0000 mgr.smithi046.lplrtl (mgr.14184) 717 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: cluster 2024-02-23T00:43:32.352069+0000 mgr.smithi046.lplrtl (mgr.14184) 718 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.601824+0000 mon.smithi046 (mon.0) 849 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.603468+0000 mon.smithi046 (mon.0) 850 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.610925+0000 mon.smithi046 (mon.0) 851 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: cluster 2024-02-23T00:43:32.611974+0000 mgr.smithi046.lplrtl (mgr.14184) 719 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.621611+0000 mon.smithi046 (mon.0) 852 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:43:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:33 smithi142 bash[20802]: audit 2024-02-23T00:43:32.637184+0000 mon.smithi046 (mon.0) 853 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:34.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:34 smithi046 bash[16275]: cephadm 2024-02-23T00:43:32.643244+0000 mgr.smithi046.lplrtl (mgr.14184) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lebnyy on smithi142 2024-02-23T00:43:34.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:34 smithi046 bash[16275]: cluster 2024-02-23T00:43:33.607894+0000 mon.smithi046 (mon.0) 854 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:43:34.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:34 smithi046 bash[16275]: cluster 2024-02-23T00:43:33.607955+0000 mon.smithi046 (mon.0) 855 : cluster [INF] Cluster is now healthy 2024-02-23T00:43:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:34 smithi142 bash[20802]: cephadm 2024-02-23T00:43:32.643244+0000 mgr.smithi046.lplrtl (mgr.14184) 720 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lebnyy on smithi142 2024-02-23T00:43:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:34 smithi142 bash[20802]: cluster 2024-02-23T00:43:33.607894+0000 mon.smithi046 (mon.0) 854 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:43:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:34 smithi142 bash[20802]: cluster 2024-02-23T00:43:33.607955+0000 mon.smithi046 (mon.0) 855 : cluster [INF] Cluster is now healthy 2024-02-23T00:43:35.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:35 smithi046 bash[16275]: cluster 2024-02-23T00:43:34.613520+0000 mgr.smithi046.lplrtl (mgr.14184) 721 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:35.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:35 smithi046 bash[16275]: audit 2024-02-23T00:43:35.324108+0000 mon.smithi046 (mon.0) 856 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:36.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:35 smithi142 bash[20802]: cluster 2024-02-23T00:43:34.613520+0000 mgr.smithi046.lplrtl (mgr.14184) 721 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:36.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:35 smithi142 bash[20802]: audit 2024-02-23T00:43:35.324108+0000 mon.smithi046 (mon.0) 856 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:36 smithi142 bash[20802]: audit 2024-02-23T00:43:36.496934+0000 mon.smithi046 (mon.0) 857 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lebnyy"}]: dispatch 2024-02-23T00:43:36.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:36 smithi046 bash[16275]: audit 2024-02-23T00:43:36.496934+0000 mon.smithi046 (mon.0) 857 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lebnyy"}]: dispatch 2024-02-23T00:43:37.061 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:37.061 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:28.412394Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.wbgizp on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-wbgizp\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.wbgizp\nDeploy daemon haproxy.nfs.foo.smithi142.wbgizp ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.289923Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.btfdps on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-btfdps\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.btfdps\nDeploy daemon haproxy.nfs.foo.smithi046.btfdps ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:42:32.292279Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.aealqi on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:37.685 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: cephadm 2024-02-23T00:43:36.495988+0000 mgr.smithi046.lplrtl (mgr.14184) 722 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: cephadm 2024-02-23T00:43:36.496282+0000 mgr.smithi046.lplrtl (mgr.14184) 723 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: cephadm 2024-02-23T00:43:36.498393+0000 mgr.smithi046.lplrtl (mgr.14184) 724 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: cephadm 2024-02-23T00:43:36.501376+0000 mgr.smithi046.lplrtl (mgr.14184) 725 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.ssynnt on smithi046 2024-02-23T00:43:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:37 smithi046 bash[16275]: cluster 2024-02-23T00:43:36.614329+0000 mgr.smithi046.lplrtl (mgr.14184) 726 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: cephadm 2024-02-23T00:43:36.495988+0000 mgr.smithi046.lplrtl (mgr.14184) 722 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: cephadm 2024-02-23T00:43:36.496282+0000 mgr.smithi046.lplrtl (mgr.14184) 723 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: cephadm 2024-02-23T00:43:36.498393+0000 mgr.smithi046.lplrtl (mgr.14184) 724 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lebnyy ... 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: cephadm 2024-02-23T00:43:36.501376+0000 mgr.smithi046.lplrtl (mgr.14184) 725 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.ssynnt on smithi046 2024-02-23T00:43:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:37 smithi142 bash[20802]: cluster 2024-02-23T00:43:36.614329+0000 mgr.smithi046.lplrtl (mgr.14184) 726 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:38.686 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:38.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:38 smithi046 bash[16275]: audit 2024-02-23T00:43:37.046983+0000 mgr.smithi046.lplrtl (mgr.14184) 727 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:39.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:38 smithi142 bash[20802]: audit 2024-02-23T00:43:37.046983+0000 mgr.smithi046.lplrtl (mgr.14184) 727 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:39.907 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:39 smithi046 bash[16275]: cluster 2024-02-23T00:43:38.615871+0000 mgr.smithi046.lplrtl (mgr.14184) 728 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:40.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:39 smithi142 bash[20802]: cluster 2024-02-23T00:43:38.615871+0000 mgr.smithi046.lplrtl (mgr.14184) 728 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:43:40.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:40 smithi046 bash[16275]: audit 2024-02-23T00:43:40.578009+0000 mon.smithi046 (mon.0) 858 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.ssynnt"}]: dispatch 2024-02-23T00:43:41.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:40 smithi142 bash[20802]: audit 2024-02-23T00:43:40.578009+0000 mon.smithi046 (mon.0) 858 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.ssynnt"}]: dispatch 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cephadm 2024-02-23T00:43:40.576984+0000 mgr.smithi046.lplrtl (mgr.14184) 729 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:41.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cephadm 2024-02-23T00:43:40.577443+0000 mgr.smithi046.lplrtl (mgr.14184) 730 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cephadm 2024-02-23T00:43:40.579210+0000 mgr.smithi046.lplrtl (mgr.14184) 731 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cephadm 2024-02-23T00:43:40.583413+0000 mgr.smithi046.lplrtl (mgr.14184) 732 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cephadm 2024-02-23T00:43:40.587028+0000 mgr.smithi046.lplrtl (mgr.14184) 733 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cluster 2024-02-23T00:43:40.589125+0000 mgr.smithi046.lplrtl (mgr.14184) 734 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:43:41.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:41 smithi046 bash[16275]: cluster 2024-02-23T00:43:40.622035+0000 mon.smithi046 (mon.0) 859 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:43:41.936 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:41.936 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cephadm 2024-02-23T00:43:40.576984+0000 mgr.smithi046.lplrtl (mgr.14184) 729 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cephadm 2024-02-23T00:43:40.577443+0000 mgr.smithi046.lplrtl (mgr.14184) 730 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cephadm 2024-02-23T00:43:40.579210+0000 mgr.smithi046.lplrtl (mgr.14184) 731 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt 2024-02-23T00:43:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.ssynnt ... 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cephadm 2024-02-23T00:43:40.583413+0000 mgr.smithi046.lplrtl (mgr.14184) 732 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cephadm 2024-02-23T00:43:40.587028+0000 mgr.smithi046.lplrtl (mgr.14184) 733 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cluster 2024-02-23T00:43:40.589125+0000 mgr.smithi046.lplrtl (mgr.14184) 734 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:43:42.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:41 smithi142 bash[20802]: cluster 2024-02-23T00:43:40.622035+0000 mon.smithi046 (mon.0) 859 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:43:42.592 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:43.593 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:43.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:43 smithi046 bash[16275]: audit 2024-02-23T00:43:41.914661+0000 mgr.smithi046.lplrtl (mgr.14184) 735 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:43.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:43 smithi046 bash[16275]: cluster 2024-02-23T00:43:42.590733+0000 mgr.smithi046.lplrtl (mgr.14184) 736 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:43:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:43 smithi142 bash[20802]: audit 2024-02-23T00:43:41.914661+0000 mgr.smithi046.lplrtl (mgr.14184) 735 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:43 smithi142 bash[20802]: cluster 2024-02-23T00:43:42.590733+0000 mgr.smithi046.lplrtl (mgr.14184) 736 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:43:44.899 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:44 smithi046 bash[16275]: audit 2024-02-23T00:43:43.787554+0000 mon.smithi046 (mon.0) 860 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:44.899 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:44 smithi046 bash[16275]: cluster 2024-02-23T00:43:44.592458+0000 mgr.smithi046.lplrtl (mgr.14184) 737 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:44 smithi142 bash[20802]: audit 2024-02-23T00:43:43.787554+0000 mon.smithi046 (mon.0) 860 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:44 smithi142 bash[20802]: cluster 2024-02-23T00:43:44.592458+0000 mgr.smithi046.lplrtl (mgr.14184) 737 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:46.572 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:46.572 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:46.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:46 smithi046 bash[16275]: audit 2024-02-23T00:43:46.555150+0000 mgr.smithi046.lplrtl (mgr.14184) 738 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:46.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:46 smithi046 bash[16275]: cluster 2024-02-23T00:43:46.593678+0000 mgr.smithi046.lplrtl (mgr.14184) 739 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:46 smithi142 bash[20802]: audit 2024-02-23T00:43:46.555150+0000 mgr.smithi046.lplrtl (mgr.14184) 738 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:46 smithi142 bash[20802]: cluster 2024-02-23T00:43:46.593678+0000 mgr.smithi046.lplrtl (mgr.14184) 739 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:47.185 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:48.187 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:48.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:48 smithi046 bash[16275]: cluster 2024-02-23T00:43:48.595278+0000 mgr.smithi046.lplrtl (mgr.14184) 740 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:49.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:48 smithi142 bash[20802]: cluster 2024-02-23T00:43:48.595278+0000 mgr.smithi046.lplrtl (mgr.14184) 740 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:51.349 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:51.349 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:51 smithi046 bash[16275]: audit 2024-02-23T00:43:50.326141+0000 mon.smithi046 (mon.0) 861 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:51 smithi046 bash[16275]: cluster 2024-02-23T00:43:50.597253+0000 mgr.smithi046.lplrtl (mgr.14184) 741 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:51 smithi142 bash[20802]: audit 2024-02-23T00:43:50.326141+0000 mon.smithi046 (mon.0) 861 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:43:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:51 smithi142 bash[20802]: cluster 2024-02-23T00:43:50.597253+0000 mgr.smithi046.lplrtl (mgr.14184) 741 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:43:51.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:52.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:52 smithi046 bash[16275]: audit 2024-02-23T00:43:51.328819+0000 mgr.smithi046.lplrtl (mgr.14184) 742 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:52.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:52 smithi142 bash[20802]: audit 2024-02-23T00:43:51.328819+0000 mgr.smithi046.lplrtl (mgr.14184) 742 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:52.992 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:53.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:53 smithi046 bash[16275]: cluster 2024-02-23T00:43:52.599037+0000 mgr.smithi046.lplrtl (mgr.14184) 743 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:53.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:53 smithi142 bash[20802]: cluster 2024-02-23T00:43:52.599037+0000 mgr.smithi046.lplrtl (mgr.14184) 743 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:54.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:54 smithi046 bash[16275]: cluster 2024-02-23T00:43:54.600901+0000 mgr.smithi046.lplrtl (mgr.14184) 744 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:54 smithi142 bash[20802]: cluster 2024-02-23T00:43:54.600901+0000 mgr.smithi046.lplrtl (mgr.14184) 744 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:56.286 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:43:56.286 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:43:56.870 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:43:56.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:56 smithi046 bash[16275]: audit 2024-02-23T00:43:56.269975+0000 mgr.smithi046.lplrtl (mgr.14184) 745 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:56.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:56 smithi046 bash[16275]: cluster 2024-02-23T00:43:56.602237+0000 mgr.smithi046.lplrtl (mgr.14184) 746 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:56 smithi142 bash[20802]: audit 2024-02-23T00:43:56.269975+0000 mgr.smithi046.lplrtl (mgr.14184) 745 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:43:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:56 smithi142 bash[20802]: cluster 2024-02-23T00:43:56.602237+0000 mgr.smithi046.lplrtl (mgr.14184) 746 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:57.870 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:43:58.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:43:58 smithi046 bash[16275]: cluster 2024-02-23T00:43:58.603968+0000 mgr.smithi046.lplrtl (mgr.14184) 747 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:43:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:43:58 smithi142 bash[20802]: cluster 2024-02-23T00:43:58.603968+0000 mgr.smithi046.lplrtl (mgr.14184) 747 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:00.974 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:00.974 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:00 smithi046 bash[16275]: cluster 2024-02-23T00:44:00.605758+0000 mgr.smithi046.lplrtl (mgr.14184) 748 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:01.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:00 smithi142 bash[20802]: cluster 2024-02-23T00:44:00.605758+0000 mgr.smithi046.lplrtl (mgr.14184) 748 : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:01.603 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:01.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:01 smithi046 bash[16275]: audit 2024-02-23T00:44:00.952867+0000 mgr.smithi046.lplrtl (mgr.14184) 749 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:02.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:01 smithi142 bash[20802]: audit 2024-02-23T00:44:00.952867+0000 mgr.smithi046.lplrtl (mgr.14184) 749 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:02.604 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:02 smithi046 bash[16275]: cluster 2024-02-23T00:44:02.607347+0000 mgr.smithi046.lplrtl (mgr.14184) 750 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:02 smithi142 bash[20802]: cluster 2024-02-23T00:44:02.607347+0000 mgr.smithi046.lplrtl (mgr.14184) 750 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:04 smithi046 bash[16275]: cluster 2024-02-23T00:44:04.609182+0000 mgr.smithi046.lplrtl (mgr.14184) 751 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:04 smithi142 bash[20802]: cluster 2024-02-23T00:44:04.609182+0000 mgr.smithi046.lplrtl (mgr.14184) 751 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:05.752 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:05.752 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:06.345 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:06.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:06 smithi046 bash[16275]: audit 2024-02-23T00:44:05.731588+0000 mgr.smithi046.lplrtl (mgr.14184) 752 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:06.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:06 smithi046 bash[16275]: cluster 2024-02-23T00:44:06.610630+0000 mgr.smithi046.lplrtl (mgr.14184) 753 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:06 smithi142 bash[20802]: audit 2024-02-23T00:44:05.731588+0000 mgr.smithi046.lplrtl (mgr.14184) 752 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:06 smithi142 bash[20802]: cluster 2024-02-23T00:44:06.610630+0000 mgr.smithi046.lplrtl (mgr.14184) 753 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:07.347 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:08 smithi046 bash[16275]: cluster 2024-02-23T00:44:08.612345+0000 mgr.smithi046.lplrtl (mgr.14184) 754 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:08 smithi142 bash[20802]: cluster 2024-02-23T00:44:08.612345+0000 mgr.smithi046.lplrtl (mgr.14184) 754 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:10.377 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:10.378 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:10 smithi046 bash[16275]: audit 2024-02-23T00:44:10.358517+0000 mgr.smithi046.lplrtl (mgr.14184) 755 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:10 smithi046 bash[16275]: cluster 2024-02-23T00:44:10.614229+0000 mgr.smithi046.lplrtl (mgr.14184) 756 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:11.005 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:10 smithi142 bash[20802]: audit 2024-02-23T00:44:10.358517+0000 mgr.smithi046.lplrtl (mgr.14184) 755 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:10 smithi142 bash[20802]: cluster 2024-02-23T00:44:10.614229+0000 mgr.smithi046.lplrtl (mgr.14184) 756 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:12.006 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:12 smithi046 bash[16275]: cluster 2024-02-23T00:44:12.615797+0000 mgr.smithi046.lplrtl (mgr.14184) 757 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:12 smithi142 bash[20802]: cluster 2024-02-23T00:44:12.615797+0000 mgr.smithi046.lplrtl (mgr.14184) 757 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:14.964 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:14.964 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:14 smithi046 bash[16275]: cluster 2024-02-23T00:44:14.617678+0000 mgr.smithi046.lplrtl (mgr.14184) 758 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:14 smithi142 bash[20802]: cluster 2024-02-23T00:44:14.617678+0000 mgr.smithi046.lplrtl (mgr.14184) 758 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:15.603 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:15.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:15 smithi046 bash[16275]: audit 2024-02-23T00:44:14.942656+0000 mgr.smithi046.lplrtl (mgr.14184) 759 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:15 smithi142 bash[20802]: audit 2024-02-23T00:44:14.942656+0000 mgr.smithi046.lplrtl (mgr.14184) 759 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:16.604 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:16 smithi046 bash[16275]: cluster 2024-02-23T00:44:16.618545+0000 mgr.smithi046.lplrtl (mgr.14184) 760 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:16 smithi142 bash[20802]: cluster 2024-02-23T00:44:16.618545+0000 mgr.smithi046.lplrtl (mgr.14184) 760 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:18 smithi046 bash[16275]: cluster 2024-02-23T00:44:18.620234+0000 mgr.smithi046.lplrtl (mgr.14184) 761 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:18 smithi142 bash[20802]: cluster 2024-02-23T00:44:18.620234+0000 mgr.smithi046.lplrtl (mgr.14184) 761 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:19.611 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:19.611 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:19 smithi046 bash[16275]: audit 2024-02-23T00:44:19.597283+0000 mgr.smithi046.lplrtl (mgr.14184) 762 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:19 smithi142 bash[20802]: audit 2024-02-23T00:44:19.597283+0000 mgr.smithi046.lplrtl (mgr.14184) 762 : audit [DBG] from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:20.203 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:20.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:20 smithi046 bash[16275]: cluster 2024-02-23T00:44:20.622027+0000 mgr.smithi046.lplrtl (mgr.14184) 763 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:20 smithi142 bash[20802]: cluster 2024-02-23T00:44:20.622027+0000 mgr.smithi046.lplrtl (mgr.14184) 763 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:21.204 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:22.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:22 smithi046 bash[16275]: cluster 2024-02-23T00:44:22.623675+0000 mgr.smithi046.lplrtl (mgr.14184) 764 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:22 smithi142 bash[20802]: cluster 2024-02-23T00:44:22.623675+0000 mgr.smithi046.lplrtl (mgr.14184) 764 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:24.255 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:24.255 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:24.836 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:24.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:24 smithi046 bash[16275]: audit 2024-02-23T00:44:24.240193+0000 mgr.smithi046.lplrtl (mgr.14184) 765 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:24.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:24 smithi046 bash[16275]: cluster 2024-02-23T00:44:24.625550+0000 mgr.smithi046.lplrtl (mgr.14184) 766 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:24 smithi142 bash[20802]: audit 2024-02-23T00:44:24.240193+0000 mgr.smithi046.lplrtl (mgr.14184) 765 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:24 smithi142 bash[20802]: cluster 2024-02-23T00:44:24.625550+0000 mgr.smithi046.lplrtl (mgr.14184) 766 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:25.837 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:26.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:26 smithi046 bash[16275]: cluster 2024-02-23T00:44:26.626744+0000 mgr.smithi046.lplrtl (mgr.14184) 767 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:27.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:26 smithi142 bash[20802]: cluster 2024-02-23T00:44:26.626744+0000 mgr.smithi046.lplrtl (mgr.14184) 767 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:28.878 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:28.878 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:28 smithi046 bash[16275]: cluster 2024-02-23T00:44:28.628217+0000 mgr.smithi046.lplrtl (mgr.14184) 768 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:28 smithi142 bash[20802]: cluster 2024-02-23T00:44:28.628217+0000 mgr.smithi046.lplrtl (mgr.14184) 768 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:29.512 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:29.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:29 smithi046 bash[16275]: audit 2024-02-23T00:44:28.864580+0000 mgr.smithi046.lplrtl (mgr.14184) 769 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:29 smithi142 bash[20802]: audit 2024-02-23T00:44:28.864580+0000 mgr.smithi046.lplrtl (mgr.14184) 769 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:30.514 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:30.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:30 smithi046 bash[16275]: cluster 2024-02-23T00:44:30.630014+0000 mgr.smithi046.lplrtl (mgr.14184) 770 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:31.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:30 smithi142 bash[20802]: cluster 2024-02-23T00:44:30.630014+0000 mgr.smithi046.lplrtl (mgr.14184) 770 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:32.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:32 smithi046 bash[16275]: cluster 2024-02-23T00:44:32.631305+0000 mgr.smithi046.lplrtl (mgr.14184) 771 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:32 smithi142 bash[20802]: cluster 2024-02-23T00:44:32.631305+0000 mgr.smithi046.lplrtl (mgr.14184) 771 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:33.703 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:33.703 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:34.268 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:34.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:34 smithi046 bash[16275]: audit 2024-02-23T00:44:33.682851+0000 mgr.smithi046.lplrtl (mgr.14184) 772 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:34.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:34 smithi046 bash[16275]: cluster 2024-02-23T00:44:34.633087+0000 mgr.smithi046.lplrtl (mgr.14184) 773 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:34 smithi142 bash[20802]: audit 2024-02-23T00:44:33.682851+0000 mgr.smithi046.lplrtl (mgr.14184) 772 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:34 smithi142 bash[20802]: cluster 2024-02-23T00:44:34.633087+0000 mgr.smithi046.lplrtl (mgr.14184) 773 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:35.269 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:36.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:36 smithi046 bash[16275]: cluster 2024-02-23T00:44:36.634336+0000 mgr.smithi046.lplrtl (mgr.14184) 774 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:37.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:36 smithi142 bash[20802]: cluster 2024-02-23T00:44:36.634336+0000 mgr.smithi046.lplrtl (mgr.14184) 774 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:38.322 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:38.322 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:38.902 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:38.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:38 smithi046 bash[16275]: audit 2024-02-23T00:44:38.305141+0000 mgr.smithi046.lplrtl (mgr.14184) 775 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:38.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:38 smithi046 bash[16275]: cluster 2024-02-23T00:44:38.636109+0000 mgr.smithi046.lplrtl (mgr.14184) 776 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:39.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:38 smithi142 bash[20802]: audit 2024-02-23T00:44:38.305141+0000 mgr.smithi046.lplrtl (mgr.14184) 775 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:39.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:38 smithi142 bash[20802]: cluster 2024-02-23T00:44:38.636109+0000 mgr.smithi046.lplrtl (mgr.14184) 776 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:44:39.903 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:40.948 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:40 smithi046 bash[16275]: audit 2024-02-23T00:44:40.590777+0000 mon.smithi046 (mon.0) 862 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:44:41.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:40 smithi142 bash[20802]: audit 2024-02-23T00:44:40.590777+0000 mon.smithi046 (mon.0) 862 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:44:41.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: cluster 2024-02-23T00:44:40.637898+0000 mgr.smithi046.lplrtl (mgr.14184) 777 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:41.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: audit 2024-02-23T00:44:40.921615+0000 mon.smithi046 (mon.0) 863 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:44:41.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: audit 2024-02-23T00:44:40.922995+0000 mon.smithi046 (mon.0) 864 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:44:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: audit 2024-02-23T00:44:40.931283+0000 mon.smithi046 (mon.0) 865 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: audit 2024-02-23T00:44:40.940413+0000 mon.smithi046 (mon.0) 866 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:44:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:41 smithi046 bash[16275]: audit 2024-02-23T00:44:40.954523+0000 mon.smithi046 (mon.0) 867 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: cluster 2024-02-23T00:44:40.637898+0000 mgr.smithi046.lplrtl (mgr.14184) 777 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: audit 2024-02-23T00:44:40.921615+0000 mon.smithi046 (mon.0) 863 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: audit 2024-02-23T00:44:40.922995+0000 mon.smithi046 (mon.0) 864 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: audit 2024-02-23T00:44:40.931283+0000 mon.smithi046 (mon.0) 865 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: audit 2024-02-23T00:44:40.940413+0000 mon.smithi046 (mon.0) 866 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:44:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:41 smithi142 bash[20802]: audit 2024-02-23T00:44:40.954523+0000 mon.smithi046 (mon.0) 867 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:42.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:42 smithi046 bash[16275]: cluster 2024-02-23T00:44:40.932071+0000 mgr.smithi046.lplrtl (mgr.14184) 778 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:42.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:42 smithi046 bash[16275]: cephadm 2024-02-23T00:44:40.957567+0000 mgr.smithi046.lplrtl (mgr.14184) 779 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dnnlrl on smithi142 2024-02-23T00:44:42.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:42 smithi046 bash[16275]: cluster 2024-02-23T00:44:41.927489+0000 mon.smithi046 (mon.0) 868 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:44:42.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:42 smithi046 bash[16275]: cluster 2024-02-23T00:44:41.927561+0000 mon.smithi046 (mon.0) 869 : cluster [INF] Cluster is now healthy 2024-02-23T00:44:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:42 smithi142 bash[20802]: cluster 2024-02-23T00:44:40.932071+0000 mgr.smithi046.lplrtl (mgr.14184) 778 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:42 smithi142 bash[20802]: cephadm 2024-02-23T00:44:40.957567+0000 mgr.smithi046.lplrtl (mgr.14184) 779 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dnnlrl on smithi142 2024-02-23T00:44:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:42 smithi142 bash[20802]: cluster 2024-02-23T00:44:41.927489+0000 mon.smithi046 (mon.0) 868 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:44:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:42 smithi142 bash[20802]: cluster 2024-02-23T00:44:41.927561+0000 mon.smithi046 (mon.0) 869 : cluster [INF] Cluster is now healthy 2024-02-23T00:44:43.013 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:43.013 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:42:32.294048Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rfobrt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:43.605 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:43.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:43 smithi046 bash[16275]: cluster 2024-02-23T00:44:42.933286+0000 mgr.smithi046.lplrtl (mgr.14184) 780 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:43.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:43 smithi046 bash[16275]: audit 2024-02-23T00:44:42.999273+0000 mgr.smithi046.lplrtl (mgr.14184) 781 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:43 smithi142 bash[20802]: cluster 2024-02-23T00:44:42.933286+0000 mgr.smithi046.lplrtl (mgr.14184) 780 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:43 smithi142 bash[20802]: audit 2024-02-23T00:44:42.999273+0000 mgr.smithi046.lplrtl (mgr.14184) 781 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:44.605 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:44 smithi142 bash[20802]: audit 2024-02-23T00:44:44.809533+0000 mon.smithi046 (mon.0) 870 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dnnlrl"}]: dispatch 2024-02-23T00:44:45.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:44 smithi046 bash[16275]: audit 2024-02-23T00:44:44.809533+0000 mon.smithi046 (mon.0) 870 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dnnlrl"}]: dispatch 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: cephadm 2024-02-23T00:44:44.808347+0000 mgr.smithi046.lplrtl (mgr.14184) 782 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.029 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.030 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: cephadm 2024-02-23T00:44:44.808843+0000 mgr.smithi046.lplrtl (mgr.14184) 783 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: cephadm 2024-02-23T00:44:44.811290+0000 mgr.smithi046.lplrtl (mgr.14184) 784 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.031 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.032 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.032 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.032 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.032 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: cephadm 2024-02-23T00:44:44.816354+0000 mgr.smithi046.lplrtl (mgr.14184) 785 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.xgybgq on smithi046 2024-02-23T00:44:46.032 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:45 smithi046 bash[16275]: cluster 2024-02-23T00:44:44.934938+0000 mgr.smithi046.lplrtl (mgr.14184) 786 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: cephadm 2024-02-23T00:44:44.808347+0000 mgr.smithi046.lplrtl (mgr.14184) 782 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: cephadm 2024-02-23T00:44:44.808843+0000 mgr.smithi046.lplrtl (mgr.14184) 783 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: cephadm 2024-02-23T00:44:44.811290+0000 mgr.smithi046.lplrtl (mgr.14184) 784 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:46.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dnnlrl ... 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: cephadm 2024-02-23T00:44:44.816354+0000 mgr.smithi046.lplrtl (mgr.14184) 785 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.xgybgq on smithi046 2024-02-23T00:44:46.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:45 smithi142 bash[20802]: cluster 2024-02-23T00:44:44.934938+0000 mgr.smithi046.lplrtl (mgr.14184) 786 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:47.814 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:47.815 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:36.498264Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lebnyy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lebnyy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lebnyy\nDeploy daemon haproxy.nfs.foo.smithi142.lebnyy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.578990Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.ssynnt on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-ssynnt\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.ssynnt\nDeploy daemon haproxy.nfs.foo.smithi046.ssynnt ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:43:40.583121Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.qdekgn on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:48.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:47 smithi046 bash[16275]: cluster 2024-02-23T00:44:46.936062+0000 mgr.smithi046.lplrtl (mgr.14184) 787 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:48.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:48 smithi142 bash[20802]: cluster 2024-02-23T00:44:46.936062+0000 mgr.smithi046.lplrtl (mgr.14184) 787 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:44:48.383 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:49.383 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:49.395 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: audit 2024-02-23T00:44:47.797004+0000 mgr.smithi046.lplrtl (mgr.14184) 788 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:49.395 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cephadm 2024-02-23T00:44:48.621252+0000 mgr.smithi046.lplrtl (mgr.14184) 789 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:44:49.396 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.397 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cephadm 2024-02-23T00:44:48.621673+0000 mgr.smithi046.lplrtl (mgr.14184) 790 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: audit 2024-02-23T00:44:48.622174+0000 mon.smithi046 (mon.0) 871 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.xgybgq"}]: dispatch 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cephadm 2024-02-23T00:44:48.623583+0000 mgr.smithi046.lplrtl (mgr.14184) 791 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:44:49.398 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cephadm 2024-02-23T00:44:48.627081+0000 mgr.smithi046.lplrtl (mgr.14184) 792 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cephadm 2024-02-23T00:44:48.630372+0000 mgr.smithi046.lplrtl (mgr.14184) 793 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: cluster 2024-02-23T00:44:48.631702+0000 mgr.smithi046.lplrtl (mgr.14184) 794 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:44:49.399 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:49 smithi046 bash[16275]: audit 2024-02-23T00:44:48.846356+0000 mon.smithi046 (mon.0) 872 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: audit 2024-02-23T00:44:47.797004+0000 mgr.smithi046.lplrtl (mgr.14184) 788 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:49.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cephadm 2024-02-23T00:44:48.621252+0000 mgr.smithi046.lplrtl (mgr.14184) 789 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cephadm 2024-02-23T00:44:48.621673+0000 mgr.smithi046.lplrtl (mgr.14184) 790 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: audit 2024-02-23T00:44:48.622174+0000 mon.smithi046 (mon.0) 871 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.xgybgq"}]: dispatch 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cephadm 2024-02-23T00:44:48.623583+0000 mgr.smithi046.lplrtl (mgr.14184) 791 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq 2024-02-23T00:44:49.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xgybgq ... 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cephadm 2024-02-23T00:44:48.627081+0000 mgr.smithi046.lplrtl (mgr.14184) 792 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cephadm 2024-02-23T00:44:48.630372+0000 mgr.smithi046.lplrtl (mgr.14184) 793 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: cluster 2024-02-23T00:44:48.631702+0000 mgr.smithi046.lplrtl (mgr.14184) 794 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:44:49.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:49 smithi142 bash[20802]: audit 2024-02-23T00:44:48.846356+0000 mon.smithi046 (mon.0) 872 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:44:50.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:50 smithi046 bash[16275]: cluster 2024-02-23T00:44:48.994235+0000 mon.smithi046 (mon.0) 873 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:44:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:50 smithi142 bash[20802]: cluster 2024-02-23T00:44:48.994235+0000 mon.smithi046 (mon.0) 873 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:44:51.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:51 smithi046 bash[16275]: cluster 2024-02-23T00:44:50.633010+0000 mgr.smithi046.lplrtl (mgr.14184) 795 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:44:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:51 smithi142 bash[20802]: cluster 2024-02-23T00:44:50.633010+0000 mgr.smithi046.lplrtl (mgr.14184) 795 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:44:52.677 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:52.677 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:52.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:52 smithi046 bash[16275]: cluster 2024-02-23T00:44:52.634527+0000 mgr.smithi046.lplrtl (mgr.14184) 796 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:52 smithi142 bash[20802]: cluster 2024-02-23T00:44:52.634527+0000 mgr.smithi046.lplrtl (mgr.14184) 796 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:53.266 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:53.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:53 smithi046 bash[16275]: audit 2024-02-23T00:44:52.658307+0000 mgr.smithi046.lplrtl (mgr.14184) 797 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:53 smithi142 bash[20802]: audit 2024-02-23T00:44:52.658307+0000 mgr.smithi046.lplrtl (mgr.14184) 797 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:54.267 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:44:54.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:54 smithi046 bash[16275]: cluster 2024-02-23T00:44:54.636354+0000 mgr.smithi046.lplrtl (mgr.14184) 798 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:54 smithi142 bash[20802]: cluster 2024-02-23T00:44:54.636354+0000 mgr.smithi046.lplrtl (mgr.14184) 798 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:56.965 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:56 smithi046 bash[16275]: cluster 2024-02-23T00:44:56.637732+0000 mgr.smithi046.lplrtl (mgr.14184) 799 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:56 smithi142 bash[20802]: cluster 2024-02-23T00:44:56.637732+0000 mgr.smithi046.lplrtl (mgr.14184) 799 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:44:57.429 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:44:57.429 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:44:57.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:57 smithi046 bash[16275]: audit 2024-02-23T00:44:57.410963+0000 mgr.smithi046.lplrtl (mgr.14184) 800 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:58.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:57 smithi142 bash[20802]: audit 2024-02-23T00:44:57.410963+0000 mgr.smithi046.lplrtl (mgr.14184) 800 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:44:58.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:44:58.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:44:58 smithi046 bash[16275]: cluster 2024-02-23T00:44:58.639481+0000 mgr.smithi046.lplrtl (mgr.14184) 801 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 33 op/s 2024-02-23T00:44:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:44:58 smithi142 bash[20802]: cluster 2024-02-23T00:44:58.639481+0000 mgr.smithi046.lplrtl (mgr.14184) 801 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 33 op/s 2024-02-23T00:44:59.069 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:00 smithi046 bash[16275]: cluster 2024-02-23T00:45:00.641404+0000 mgr.smithi046.lplrtl (mgr.14184) 802 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:01.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:00 smithi142 bash[20802]: cluster 2024-02-23T00:45:00.641404+0000 mgr.smithi046.lplrtl (mgr.14184) 802 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:02.283 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:02.283 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:02.881 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:02 smithi046 bash[16275]: audit 2024-02-23T00:45:02.263424+0000 mgr.smithi046.lplrtl (mgr.14184) 803 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:02 smithi046 bash[16275]: cluster 2024-02-23T00:45:02.643042+0000 mgr.smithi046.lplrtl (mgr.14184) 804 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:02 smithi142 bash[20802]: audit 2024-02-23T00:45:02.263424+0000 mgr.smithi046.lplrtl (mgr.14184) 803 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:02 smithi142 bash[20802]: cluster 2024-02-23T00:45:02.643042+0000 mgr.smithi046.lplrtl (mgr.14184) 804 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:03.883 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:04 smithi046 bash[16275]: cluster 2024-02-23T00:45:04.644920+0000 mgr.smithi046.lplrtl (mgr.14184) 805 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:04 smithi142 bash[20802]: cluster 2024-02-23T00:45:04.644920+0000 mgr.smithi046.lplrtl (mgr.14184) 805 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:06.946 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:06.947 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:06.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:06 smithi046 bash[16275]: cluster 2024-02-23T00:45:06.646233+0000 mgr.smithi046.lplrtl (mgr.14184) 806 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:07.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:06 smithi142 bash[20802]: cluster 2024-02-23T00:45:06.646233+0000 mgr.smithi046.lplrtl (mgr.14184) 806 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:07.590 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:07.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:07 smithi046 bash[16275]: audit 2024-02-23T00:45:06.925788+0000 mgr.smithi046.lplrtl (mgr.14184) 807 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:08.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:07 smithi142 bash[20802]: audit 2024-02-23T00:45:06.925788+0000 mgr.smithi046.lplrtl (mgr.14184) 807 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:08.591 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:08 smithi046 bash[16275]: cluster 2024-02-23T00:45:08.648073+0000 mgr.smithi046.lplrtl (mgr.14184) 808 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:08 smithi142 bash[20802]: cluster 2024-02-23T00:45:08.648073+0000 mgr.smithi046.lplrtl (mgr.14184) 808 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 62 KiB/s rd, 0 B/s wr, 102 op/s 2024-02-23T00:45:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:10 smithi046 bash[16275]: cluster 2024-02-23T00:45:10.650071+0000 mgr.smithi046.lplrtl (mgr.14184) 809 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 0 B/s wr, 70 op/s 2024-02-23T00:45:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:10 smithi142 bash[20802]: cluster 2024-02-23T00:45:10.650071+0000 mgr.smithi046.lplrtl (mgr.14184) 809 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 42 KiB/s rd, 0 B/s wr, 70 op/s 2024-02-23T00:45:11.694 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:11.761 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:12.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:12 smithi046 bash[16275]: audit 2024-02-23T00:45:11.673088+0000 mgr.smithi046.lplrtl (mgr.14184) 810 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:12 smithi046 bash[16275]: cluster 2024-02-23T00:45:12.651745+0000 mgr.smithi046.lplrtl (mgr.14184) 811 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:12 smithi142 bash[20802]: audit 2024-02-23T00:45:11.673088+0000 mgr.smithi046.lplrtl (mgr.14184) 810 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:12 smithi142 bash[20802]: cluster 2024-02-23T00:45:12.651745+0000 mgr.smithi046.lplrtl (mgr.14184) 811 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:13.272 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:14 smithi046 bash[16275]: cluster 2024-02-23T00:45:14.653508+0000 mgr.smithi046.lplrtl (mgr.14184) 812 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:14 smithi142 bash[20802]: cluster 2024-02-23T00:45:14.653508+0000 mgr.smithi046.lplrtl (mgr.14184) 812 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:16.279 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:16.279 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:16.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:16 smithi046 bash[16275]: audit 2024-02-23T00:45:16.258335+0000 mgr.smithi046.lplrtl (mgr.14184) 813 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:16 smithi046 bash[16275]: cluster 2024-02-23T00:45:16.655031+0000 mgr.smithi046.lplrtl (mgr.14184) 814 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:16 smithi142 bash[20802]: audit 2024-02-23T00:45:16.258335+0000 mgr.smithi046.lplrtl (mgr.14184) 813 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:16 smithi142 bash[20802]: cluster 2024-02-23T00:45:16.655031+0000 mgr.smithi046.lplrtl (mgr.14184) 814 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:17.830 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:19 smithi046 bash[16275]: cluster 2024-02-23T00:45:18.656828+0000 mgr.smithi046.lplrtl (mgr.14184) 815 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:19 smithi142 bash[20802]: cluster 2024-02-23T00:45:18.656828+0000 mgr.smithi046.lplrtl (mgr.14184) 815 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:20.809 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:20.810 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:21.394 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:21.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:21 smithi046 bash[16275]: cluster 2024-02-23T00:45:20.658804+0000 mgr.smithi046.lplrtl (mgr.14184) 816 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:45:21.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:21 smithi046 bash[16275]: audit 2024-02-23T00:45:20.790425+0000 mgr.smithi046.lplrtl (mgr.14184) 817 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:21 smithi142 bash[20802]: cluster 2024-02-23T00:45:20.658804+0000 mgr.smithi046.lplrtl (mgr.14184) 816 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:45:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:21 smithi142 bash[20802]: audit 2024-02-23T00:45:20.790425+0000 mgr.smithi046.lplrtl (mgr.14184) 817 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:22.395 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:23.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:23 smithi046 bash[16275]: cluster 2024-02-23T00:45:22.660451+0000 mgr.smithi046.lplrtl (mgr.14184) 818 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:23 smithi142 bash[20802]: cluster 2024-02-23T00:45:22.660451+0000 mgr.smithi046.lplrtl (mgr.14184) 818 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:25.438 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:25.438 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:25 smithi142 bash[20802]: cluster 2024-02-23T00:45:24.662513+0000 mgr.smithi046.lplrtl (mgr.14184) 819 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:25 smithi142 bash[20802]: audit 2024-02-23T00:45:25.424728+0000 mgr.smithi046.lplrtl (mgr.14184) 820 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:26.028 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:25 smithi046 bash[16275]: cluster 2024-02-23T00:45:24.662513+0000 mgr.smithi046.lplrtl (mgr.14184) 819 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:26.028 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:25 smithi046 bash[16275]: audit 2024-02-23T00:45:25.424728+0000 mgr.smithi046.lplrtl (mgr.14184) 820 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:26.029 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:27.030 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:27 smithi142 bash[20802]: cluster 2024-02-23T00:45:26.664000+0000 mgr.smithi046.lplrtl (mgr.14184) 821 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:28.015 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:27 smithi046 bash[16275]: cluster 2024-02-23T00:45:26.664000+0000 mgr.smithi046.lplrtl (mgr.14184) 821 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:29.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:29 smithi046 bash[16275]: cluster 2024-02-23T00:45:28.665406+0000 mgr.smithi046.lplrtl (mgr.14184) 822 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:30.046 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:30.047 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:29 smithi142 bash[20802]: cluster 2024-02-23T00:45:28.665406+0000 mgr.smithi046.lplrtl (mgr.14184) 822 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:30.699 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:30.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:30 smithi046 bash[16275]: audit 2024-02-23T00:45:30.026253+0000 mgr.smithi046.lplrtl (mgr.14184) 823 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:30 smithi142 bash[20802]: audit 2024-02-23T00:45:30.026253+0000 mgr.smithi046.lplrtl (mgr.14184) 823 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:31.700 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:31.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:31 smithi046 bash[16275]: cluster 2024-02-23T00:45:30.667414+0000 mgr.smithi046.lplrtl (mgr.14184) 824 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:45:32.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:31 smithi142 bash[20802]: cluster 2024-02-23T00:45:30.667414+0000 mgr.smithi046.lplrtl (mgr.14184) 824 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:45:34.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:33 smithi046 bash[16275]: cluster 2024-02-23T00:45:32.669057+0000 mgr.smithi046.lplrtl (mgr.14184) 825 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:34.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:33 smithi142 bash[20802]: cluster 2024-02-23T00:45:32.669057+0000 mgr.smithi046.lplrtl (mgr.14184) 825 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:34.755 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:34.755 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:35.336 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:36.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:35 smithi046 bash[16275]: cluster 2024-02-23T00:45:34.671114+0000 mgr.smithi046.lplrtl (mgr.14184) 826 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:36.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:35 smithi046 bash[16275]: audit 2024-02-23T00:45:34.739009+0000 mgr.smithi046.lplrtl (mgr.14184) 827 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:36.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:35 smithi142 bash[20802]: cluster 2024-02-23T00:45:34.671114+0000 mgr.smithi046.lplrtl (mgr.14184) 826 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:45:36.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:35 smithi142 bash[20802]: audit 2024-02-23T00:45:34.739009+0000 mgr.smithi046.lplrtl (mgr.14184) 827 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:36.336 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:38.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:37 smithi046 bash[16275]: cluster 2024-02-23T00:45:36.672706+0000 mgr.smithi046.lplrtl (mgr.14184) 828 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-02-23T00:45:38.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:37 smithi142 bash[20802]: cluster 2024-02-23T00:45:36.672706+0000 mgr.smithi046.lplrtl (mgr.14184) 828 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-02-23T00:45:39.473 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:39.473 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:40.054 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:39 smithi046 bash[16275]: cluster 2024-02-23T00:45:38.674124+0000 mgr.smithi046.lplrtl (mgr.14184) 829 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2024-02-23T00:45:40.054 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:39 smithi046 bash[16275]: audit 2024-02-23T00:45:39.454893+0000 mgr.smithi046.lplrtl (mgr.14184) 830 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:40.055 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:40.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:39 smithi142 bash[20802]: cluster 2024-02-23T00:45:38.674124+0000 mgr.smithi046.lplrtl (mgr.14184) 829 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2024-02-23T00:45:40.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:39 smithi142 bash[20802]: audit 2024-02-23T00:45:39.454893+0000 mgr.smithi046.lplrtl (mgr.14184) 830 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:41.056 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:42.089 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:41 smithi046 bash[16275]: cluster 2024-02-23T00:45:40.676142+0000 mgr.smithi046.lplrtl (mgr.14184) 831 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:42.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:41 smithi142 bash[20802]: cluster 2024-02-23T00:45:40.676142+0000 mgr.smithi046.lplrtl (mgr.14184) 831 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:43.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:43 smithi046 bash[16275]: cluster 2024-02-23T00:45:42.677877+0000 mgr.smithi046.lplrtl (mgr.14184) 832 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:44.020 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:44.020 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:44.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:43 smithi142 bash[20802]: cluster 2024-02-23T00:45:42.677877+0000 mgr.smithi046.lplrtl (mgr.14184) 832 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:44.651 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:44.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:44 smithi046 bash[16275]: audit 2024-02-23T00:45:43.999402+0000 mgr.smithi046.lplrtl (mgr.14184) 833 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:44 smithi142 bash[20802]: audit 2024-02-23T00:45:43.999402+0000 mgr.smithi046.lplrtl (mgr.14184) 833 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:45.652 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:45.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:45 smithi046 bash[16275]: cluster 2024-02-23T00:45:44.680053+0000 mgr.smithi046.lplrtl (mgr.14184) 834 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:46.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:45 smithi142 bash[20802]: cluster 2024-02-23T00:45:44.680053+0000 mgr.smithi046.lplrtl (mgr.14184) 834 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:48.198 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:47 smithi046 bash[16275]: cluster 2024-02-23T00:45:46.681234+0000 mgr.smithi046.lplrtl (mgr.14184) 835 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:48.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:47 smithi142 bash[20802]: cluster 2024-02-23T00:45:46.681234+0000 mgr.smithi046.lplrtl (mgr.14184) 835 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:48.642 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:48.643 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:43:40.586915Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.kxbhow on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:48.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:48 smithi046 bash[16275]: audit 2024-02-23T00:45:48.626968+0000 mgr.smithi046.lplrtl (mgr.14184) 836 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:48.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:48 smithi046 bash[16275]: audit 2024-02-23T00:45:48.635584+0000 mon.smithi046 (mon.0) 874 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:45:49.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:48 smithi142 bash[20802]: audit 2024-02-23T00:45:48.626968+0000 mgr.smithi046.lplrtl (mgr.14184) 836 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:49.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:48 smithi142 bash[20802]: audit 2024-02-23T00:45:48.635584+0000 mon.smithi046 (mon.0) 874 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:45:49.273 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: cluster 2024-02-23T00:45:48.682642+0000 mgr.smithi046.lplrtl (mgr.14184) 837 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: audit 2024-02-23T00:45:48.958075+0000 mon.smithi046 (mon.0) 875 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: audit 2024-02-23T00:45:48.959808+0000 mon.smithi046 (mon.0) 876 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: audit 2024-02-23T00:45:48.969443+0000 mon.smithi046 (mon.0) 877 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: cluster 2024-02-23T00:45:48.970398+0000 mgr.smithi046.lplrtl (mgr.14184) 838 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: audit 2024-02-23T00:45:48.977627+0000 mon.smithi046 (mon.0) 878 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: audit 2024-02-23T00:45:48.994413+0000 mon.smithi046 (mon.0) 879 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:50.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:49 smithi046 bash[16275]: cephadm 2024-02-23T00:45:48.998300+0000 mgr.smithi046.lplrtl (mgr.14184) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dyloan on smithi142 2024-02-23T00:45:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: cluster 2024-02-23T00:45:48.682642+0000 mgr.smithi046.lplrtl (mgr.14184) 837 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.8 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:45:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: audit 2024-02-23T00:45:48.958075+0000 mon.smithi046 (mon.0) 875 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:45:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: audit 2024-02-23T00:45:48.959808+0000 mon.smithi046 (mon.0) 876 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:45:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: audit 2024-02-23T00:45:48.969443+0000 mon.smithi046 (mon.0) 877 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: cluster 2024-02-23T00:45:48.970398+0000 mgr.smithi046.lplrtl (mgr.14184) 838 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 0 B/s wr, 4 op/s 2024-02-23T00:45:50.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: audit 2024-02-23T00:45:48.977627+0000 mon.smithi046 (mon.0) 878 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:45:50.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: audit 2024-02-23T00:45:48.994413+0000 mon.smithi046 (mon.0) 879 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:50.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:49 smithi142 bash[20802]: cephadm 2024-02-23T00:45:48.998300+0000 mgr.smithi046.lplrtl (mgr.14184) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.dyloan on smithi142 2024-02-23T00:45:50.273 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:51.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:50 smithi046 bash[16275]: cluster 2024-02-23T00:45:49.965725+0000 mon.smithi046 (mon.0) 880 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:45:51.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:50 smithi046 bash[16275]: cluster 2024-02-23T00:45:49.965800+0000 mon.smithi046 (mon.0) 881 : cluster [INF] Cluster is now healthy 2024-02-23T00:45:51.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:50 smithi046 bash[16275]: audit 2024-02-23T00:45:50.328399+0000 mon.smithi046 (mon.0) 882 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:50 smithi142 bash[20802]: cluster 2024-02-23T00:45:49.965725+0000 mon.smithi046 (mon.0) 880 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:45:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:50 smithi142 bash[20802]: cluster 2024-02-23T00:45:49.965800+0000 mon.smithi046 (mon.0) 881 : cluster [INF] Cluster is now healthy 2024-02-23T00:45:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:50 smithi142 bash[20802]: audit 2024-02-23T00:45:50.328399+0000 mon.smithi046 (mon.0) 882 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:51.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:51 smithi046 bash[16275]: cluster 2024-02-23T00:45:50.972061+0000 mgr.smithi046.lplrtl (mgr.14184) 840 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:52.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:51 smithi142 bash[20802]: cluster 2024-02-23T00:45:50.972061+0000 mgr.smithi046.lplrtl (mgr.14184) 840 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:53.373 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:53.373 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:44.810972Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dnnlrl on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dnnlrl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dnnlrl\nDeploy daemon haproxy.nfs.foo.smithi142.dnnlrl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.623367Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xgybgq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xgybgq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xgybgq\nDeploy daemon haproxy.nfs.foo.smithi046.xgybgq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:44:48.626879Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.ucbbsu on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:53.971 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:54.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: cluster 2024-02-23T00:45:52.973295+0000 mgr.smithi046.lplrtl (mgr.14184) 841 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:54.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: cephadm 2024-02-23T00:45:53.248458+0000 mgr.smithi046.lplrtl (mgr.14184) 842 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:45:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: cephadm 2024-02-23T00:45:53.248736+0000 mgr.smithi046.lplrtl (mgr.14184) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: audit 2024-02-23T00:45:53.249263+0000 mon.smithi046 (mon.0) 883 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dyloan"}]: dispatch 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: cephadm 2024-02-23T00:45:53.251788+0000 mgr.smithi046.lplrtl (mgr.14184) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: cephadm 2024-02-23T00:45:53.255635+0000 mgr.smithi046.lplrtl (mgr.14184) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.sycmij on smithi046 2024-02-23T00:45:54.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:54 smithi046 bash[16275]: audit 2024-02-23T00:45:53.351981+0000 mgr.smithi046.lplrtl (mgr.14184) 846 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: cluster 2024-02-23T00:45:52.973295+0000 mgr.smithi046.lplrtl (mgr.14184) 841 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: cephadm 2024-02-23T00:45:53.248458+0000 mgr.smithi046.lplrtl (mgr.14184) 842 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: cephadm 2024-02-23T00:45:53.248736+0000 mgr.smithi046.lplrtl (mgr.14184) 843 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: audit 2024-02-23T00:45:53.249263+0000 mon.smithi046 (mon.0) 883 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.dyloan"}]: dispatch 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: cephadm 2024-02-23T00:45:53.251788+0000 mgr.smithi046.lplrtl (mgr.14184) 844 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:54.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.dyloan ... 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:54.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: cephadm 2024-02-23T00:45:53.255635+0000 mgr.smithi046.lplrtl (mgr.14184) 845 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.sycmij on smithi046 2024-02-23T00:45:54.513 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:54 smithi142 bash[20802]: audit 2024-02-23T00:45:53.351981+0000 mgr.smithi046.lplrtl (mgr.14184) 846 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:54.972 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:45:56.217 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:56 smithi046 bash[16275]: cluster 2024-02-23T00:45:54.975089+0000 mgr.smithi046.lplrtl (mgr.14184) 847 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:56.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:56 smithi142 bash[20802]: cluster 2024-02-23T00:45:54.975089+0000 mgr.smithi046.lplrtl (mgr.14184) 847 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:58.104 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:45:58.104 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:45:58.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cluster 2024-02-23T00:45:56.976338+0000 mgr.smithi046.lplrtl (mgr.14184) 848 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cephadm 2024-02-23T00:45:57.530646+0000 mgr.smithi046.lplrtl (mgr.14184) 849 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cephadm 2024-02-23T00:45:57.531274+0000 mgr.smithi046.lplrtl (mgr.14184) 850 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: audit 2024-02-23T00:45:57.532133+0000 mon.smithi046 (mon.0) 884 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.sycmij"}]: dispatch 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cephadm 2024-02-23T00:45:57.533946+0000 mgr.smithi046.lplrtl (mgr.14184) 851 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cephadm 2024-02-23T00:45:57.538212+0000 mgr.smithi046.lplrtl (mgr.14184) 852 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cephadm 2024-02-23T00:45:57.542211+0000 mgr.smithi046.lplrtl (mgr.14184) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:45:58.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:58 smithi046 bash[16275]: cluster 2024-02-23T00:45:57.543142+0000 mgr.smithi046.lplrtl (mgr.14184) 854 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-23T00:45:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cluster 2024-02-23T00:45:56.976338+0000 mgr.smithi046.lplrtl (mgr.14184) 848 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:45:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cephadm 2024-02-23T00:45:57.530646+0000 mgr.smithi046.lplrtl (mgr.14184) 849 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:45:58.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cephadm 2024-02-23T00:45:57.531274+0000 mgr.smithi046.lplrtl (mgr.14184) 850 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: audit 2024-02-23T00:45:57.532133+0000 mon.smithi046 (mon.0) 884 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.sycmij"}]: dispatch 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cephadm 2024-02-23T00:45:57.533946+0000 mgr.smithi046.lplrtl (mgr.14184) 851 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.sycmij ... 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cephadm 2024-02-23T00:45:57.538212+0000 mgr.smithi046.lplrtl (mgr.14184) 852 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cephadm 2024-02-23T00:45:57.542211+0000 mgr.smithi046.lplrtl (mgr.14184) 853 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:45:58.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:58 smithi142 bash[20802]: cluster 2024-02-23T00:45:57.543142+0000 mgr.smithi046.lplrtl (mgr.14184) 854 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 115 B/s rd, 0 op/s 2024-02-23T00:45:58.776 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:45:59.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:59 smithi046 bash[16275]: cluster 2024-02-23T00:45:58.039672+0000 mon.smithi046 (mon.0) 885 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:45:59.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:59 smithi046 bash[16275]: audit 2024-02-23T00:45:58.085686+0000 mgr.smithi046.lplrtl (mgr.14184) 855 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:59.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:45:59 smithi046 bash[16275]: audit 2024-02-23T00:45:58.909218+0000 mon.smithi046 (mon.0) 886 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:59.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:59 smithi142 bash[20802]: cluster 2024-02-23T00:45:58.039672+0000 mon.smithi046 (mon.0) 885 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:45:59.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:59 smithi142 bash[20802]: audit 2024-02-23T00:45:58.085686+0000 mgr.smithi046.lplrtl (mgr.14184) 855 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:45:59.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:45:59 smithi142 bash[20802]: audit 2024-02-23T00:45:58.909218+0000 mon.smithi046 (mon.0) 886 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:45:59.778 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:00.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:00 smithi046 bash[16275]: cluster 2024-02-23T00:45:59.544693+0000 mgr.smithi046.lplrtl (mgr.14184) 856 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:00.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:00 smithi142 bash[20802]: cluster 2024-02-23T00:45:59.544693+0000 mgr.smithi046.lplrtl (mgr.14184) 856 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:02.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:02 smithi046 bash[16275]: cluster 2024-02-23T00:46:01.545808+0000 mgr.smithi046.lplrtl (mgr.14184) 857 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:02.830 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:02.830 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:02 smithi142 bash[20802]: cluster 2024-02-23T00:46:01.545808+0000 mgr.smithi046.lplrtl (mgr.14184) 857 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:03.485 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:04.486 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:04.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:04 smithi046 bash[16275]: audit 2024-02-23T00:46:02.814486+0000 mgr.smithi046.lplrtl (mgr.14184) 858 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:04 smithi046 bash[16275]: cluster 2024-02-23T00:46:03.547525+0000 mgr.smithi046.lplrtl (mgr.14184) 859 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:04 smithi142 bash[20802]: audit 2024-02-23T00:46:02.814486+0000 mgr.smithi046.lplrtl (mgr.14184) 858 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:04 smithi142 bash[20802]: cluster 2024-02-23T00:46:03.547525+0000 mgr.smithi046.lplrtl (mgr.14184) 859 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:06.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:06 smithi046 bash[16275]: audit 2024-02-23T00:46:05.328460+0000 mon.smithi046 (mon.0) 887 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:46:06.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:06 smithi046 bash[16275]: cluster 2024-02-23T00:46:05.548571+0000 mgr.smithi046.lplrtl (mgr.14184) 860 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:06 smithi142 bash[20802]: audit 2024-02-23T00:46:05.328460+0000 mon.smithi046 (mon.0) 887 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:46:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:06 smithi142 bash[20802]: cluster 2024-02-23T00:46:05.548571+0000 mgr.smithi046.lplrtl (mgr.14184) 860 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:07.484 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:07.484 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:08.082 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:08 smithi046 bash[16275]: audit 2024-02-23T00:46:07.467065+0000 mgr.smithi046.lplrtl (mgr.14184) 861 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:08 smithi046 bash[16275]: cluster 2024-02-23T00:46:07.550151+0000 mgr.smithi046.lplrtl (mgr.14184) 862 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:08 smithi142 bash[20802]: audit 2024-02-23T00:46:07.467065+0000 mgr.smithi046.lplrtl (mgr.14184) 861 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:08 smithi142 bash[20802]: cluster 2024-02-23T00:46:07.550151+0000 mgr.smithi046.lplrtl (mgr.14184) 862 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:46:09.084 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:10 smithi046 bash[16275]: cluster 2024-02-23T00:46:09.551445+0000 mgr.smithi046.lplrtl (mgr.14184) 863 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:10 smithi142 bash[20802]: cluster 2024-02-23T00:46:09.551445+0000 mgr.smithi046.lplrtl (mgr.14184) 863 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:12.106 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:12.106 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:12.701 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:12 smithi046 bash[16275]: cluster 2024-02-23T00:46:11.552956+0000 mgr.smithi046.lplrtl (mgr.14184) 864 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:12 smithi142 bash[20802]: cluster 2024-02-23T00:46:11.552956+0000 mgr.smithi046.lplrtl (mgr.14184) 864 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:13.702 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:13.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:13 smithi046 bash[16275]: audit 2024-02-23T00:46:12.085836+0000 mgr.smithi046.lplrtl (mgr.14184) 865 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:13 smithi142 bash[20802]: audit 2024-02-23T00:46:12.085836+0000 mgr.smithi046.lplrtl (mgr.14184) 865 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:14.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:14 smithi046 bash[16275]: cluster 2024-02-23T00:46:13.554773+0000 mgr.smithi046.lplrtl (mgr.14184) 866 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:14 smithi142 bash[20802]: cluster 2024-02-23T00:46:13.554773+0000 mgr.smithi046.lplrtl (mgr.14184) 866 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:16.713 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:16.713 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:16.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:16 smithi046 bash[16275]: cluster 2024-02-23T00:46:15.556783+0000 mgr.smithi046.lplrtl (mgr.14184) 867 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:16 smithi142 bash[20802]: cluster 2024-02-23T00:46:15.556783+0000 mgr.smithi046.lplrtl (mgr.14184) 867 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:17.340 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:18.341 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:18.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:18 smithi046 bash[16275]: audit 2024-02-23T00:46:16.692205+0000 mgr.smithi046.lplrtl (mgr.14184) 868 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:18.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:18 smithi046 bash[16275]: cluster 2024-02-23T00:46:17.558417+0000 mgr.smithi046.lplrtl (mgr.14184) 869 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:18 smithi142 bash[20802]: audit 2024-02-23T00:46:16.692205+0000 mgr.smithi046.lplrtl (mgr.14184) 868 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:18 smithi142 bash[20802]: cluster 2024-02-23T00:46:17.558417+0000 mgr.smithi046.lplrtl (mgr.14184) 869 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:20.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:20 smithi046 bash[16275]: cluster 2024-02-23T00:46:19.559887+0000 mgr.smithi046.lplrtl (mgr.14184) 870 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:20 smithi142 bash[20802]: cluster 2024-02-23T00:46:19.559887+0000 mgr.smithi046.lplrtl (mgr.14184) 870 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:21.502 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:21.502 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:22.109 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:22.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:22 smithi046 bash[16275]: audit 2024-02-23T00:46:21.484449+0000 mgr.smithi046.lplrtl (mgr.14184) 871 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:22.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:22 smithi046 bash[16275]: cluster 2024-02-23T00:46:21.561579+0000 mgr.smithi046.lplrtl (mgr.14184) 872 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:22 smithi142 bash[20802]: audit 2024-02-23T00:46:21.484449+0000 mgr.smithi046.lplrtl (mgr.14184) 871 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:22 smithi142 bash[20802]: cluster 2024-02-23T00:46:21.561579+0000 mgr.smithi046.lplrtl (mgr.14184) 872 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:23.110 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:24.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:24 smithi046 bash[16275]: cluster 2024-02-23T00:46:23.563533+0000 mgr.smithi046.lplrtl (mgr.14184) 873 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:24 smithi142 bash[20802]: cluster 2024-02-23T00:46:23.563533+0000 mgr.smithi046.lplrtl (mgr.14184) 873 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:26.257 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:26.257 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:26.856 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:26.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:26 smithi046 bash[16275]: cluster 2024-02-23T00:46:25.565536+0000 mgr.smithi046.lplrtl (mgr.14184) 874 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:27.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:26 smithi142 bash[20802]: cluster 2024-02-23T00:46:25.565536+0000 mgr.smithi046.lplrtl (mgr.14184) 874 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:27.857 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:27.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:27 smithi046 bash[16275]: audit 2024-02-23T00:46:26.241138+0000 mgr.smithi046.lplrtl (mgr.14184) 875 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:27 smithi142 bash[20802]: audit 2024-02-23T00:46:26.241138+0000 mgr.smithi046.lplrtl (mgr.14184) 875 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:28.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:28 smithi046 bash[16275]: cluster 2024-02-23T00:46:27.567384+0000 mgr.smithi046.lplrtl (mgr.14184) 876 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:28 smithi142 bash[20802]: cluster 2024-02-23T00:46:27.567384+0000 mgr.smithi046.lplrtl (mgr.14184) 876 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:29.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:29 smithi046 bash[16275]: cluster 2024-02-23T00:46:29.569092+0000 mgr.smithi046.lplrtl (mgr.14184) 877 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:29 smithi142 bash[20802]: cluster 2024-02-23T00:46:29.569092+0000 mgr.smithi046.lplrtl (mgr.14184) 877 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:30.895 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:30.895 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:31.498 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:32.499 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:32.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:32 smithi046 bash[16275]: audit 2024-02-23T00:46:30.877162+0000 mgr.smithi046.lplrtl (mgr.14184) 878 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:32.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:32 smithi046 bash[16275]: cluster 2024-02-23T00:46:31.570752+0000 mgr.smithi046.lplrtl (mgr.14184) 879 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:32 smithi142 bash[20802]: audit 2024-02-23T00:46:30.877162+0000 mgr.smithi046.lplrtl (mgr.14184) 878 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:32 smithi142 bash[20802]: cluster 2024-02-23T00:46:31.570752+0000 mgr.smithi046.lplrtl (mgr.14184) 879 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:34.979 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:34 smithi046 bash[16275]: cluster 2024-02-23T00:46:33.572206+0000 mgr.smithi046.lplrtl (mgr.14184) 880 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:34 smithi142 bash[20802]: cluster 2024-02-23T00:46:33.572206+0000 mgr.smithi046.lplrtl (mgr.14184) 880 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:35.425 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:35.426 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:36.052 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:36.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:36 smithi046 bash[16275]: audit 2024-02-23T00:46:35.412778+0000 mgr.smithi046.lplrtl (mgr.14184) 881 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:36.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:36 smithi046 bash[16275]: cluster 2024-02-23T00:46:35.574062+0000 mgr.smithi046.lplrtl (mgr.14184) 882 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:37.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:36 smithi142 bash[20802]: audit 2024-02-23T00:46:35.412778+0000 mgr.smithi046.lplrtl (mgr.14184) 881 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:37.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:36 smithi142 bash[20802]: cluster 2024-02-23T00:46:35.574062+0000 mgr.smithi046.lplrtl (mgr.14184) 882 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:37.053 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:38.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:38 smithi046 bash[16275]: cluster 2024-02-23T00:46:37.575644+0000 mgr.smithi046.lplrtl (mgr.14184) 883 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:39.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:38 smithi142 bash[20802]: cluster 2024-02-23T00:46:37.575644+0000 mgr.smithi046.lplrtl (mgr.14184) 883 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:40.111 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:40.111 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:40.730 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:40.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:40 smithi046 bash[16275]: cluster 2024-02-23T00:46:39.577239+0000 mgr.smithi046.lplrtl (mgr.14184) 884 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:41.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:40 smithi142 bash[20802]: cluster 2024-02-23T00:46:39.577239+0000 mgr.smithi046.lplrtl (mgr.14184) 884 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:41.731 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:41.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:41 smithi046 bash[16275]: audit 2024-02-23T00:46:40.090025+0000 mgr.smithi046.lplrtl (mgr.14184) 885 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:41 smithi142 bash[20802]: audit 2024-02-23T00:46:40.090025+0000 mgr.smithi046.lplrtl (mgr.14184) 885 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:42.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:42 smithi046 bash[16275]: cluster 2024-02-23T00:46:41.578730+0000 mgr.smithi046.lplrtl (mgr.14184) 886 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:42 smithi142 bash[20802]: cluster 2024-02-23T00:46:41.578730+0000 mgr.smithi046.lplrtl (mgr.14184) 886 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:44.779 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:44.779 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:44.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:44 smithi046 bash[16275]: cluster 2024-02-23T00:46:43.580052+0000 mgr.smithi046.lplrtl (mgr.14184) 887 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:44 smithi142 bash[20802]: cluster 2024-02-23T00:46:43.580052+0000 mgr.smithi046.lplrtl (mgr.14184) 887 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:45.379 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:46.380 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:46.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:46 smithi046 bash[16275]: audit 2024-02-23T00:46:44.758565+0000 mgr.smithi046.lplrtl (mgr.14184) 888 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:46.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:46 smithi046 bash[16275]: cluster 2024-02-23T00:46:45.581873+0000 mgr.smithi046.lplrtl (mgr.14184) 889 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:46 smithi142 bash[20802]: audit 2024-02-23T00:46:44.758565+0000 mgr.smithi046.lplrtl (mgr.14184) 888 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:46 smithi142 bash[20802]: cluster 2024-02-23T00:46:45.581873+0000 mgr.smithi046.lplrtl (mgr.14184) 889 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:47.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:47 smithi046 bash[16275]: cluster 2024-02-23T00:46:47.583516+0000 mgr.smithi046.lplrtl (mgr.14184) 890 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:47 smithi142 bash[20802]: cluster 2024-02-23T00:46:47.583516+0000 mgr.smithi046.lplrtl (mgr.14184) 890 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:49.437 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:49.437 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:50.063 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:50.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:50 smithi046 bash[16275]: audit 2024-02-23T00:46:49.419460+0000 mgr.smithi046.lplrtl (mgr.14184) 891 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:50.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:50 smithi046 bash[16275]: cluster 2024-02-23T00:46:49.585376+0000 mgr.smithi046.lplrtl (mgr.14184) 892 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:51.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:50 smithi142 bash[20802]: audit 2024-02-23T00:46:49.419460+0000 mgr.smithi046.lplrtl (mgr.14184) 891 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:51.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:50 smithi142 bash[20802]: cluster 2024-02-23T00:46:49.585376+0000 mgr.smithi046.lplrtl (mgr.14184) 892 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:51.064 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:52.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:52 smithi046 bash[16275]: cluster 2024-02-23T00:46:51.586010+0000 mgr.smithi046.lplrtl (mgr.14184) 893 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:52 smithi142 bash[20802]: cluster 2024-02-23T00:46:51.586010+0000 mgr.smithi046.lplrtl (mgr.14184) 893 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:46:54.171 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:54.171 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:54.767 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:54.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:54 smithi046 bash[16275]: cluster 2024-02-23T00:46:53.587721+0000 mgr.smithi046.lplrtl (mgr.14184) 894 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:54 smithi142 bash[20802]: cluster 2024-02-23T00:46:53.587721+0000 mgr.smithi046.lplrtl (mgr.14184) 894 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:55.769 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:46:55.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:55 smithi046 bash[16275]: audit 2024-02-23T00:46:54.158135+0000 mgr.smithi046.lplrtl (mgr.14184) 895 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:55 smithi142 bash[20802]: audit 2024-02-23T00:46:54.158135+0000 mgr.smithi046.lplrtl (mgr.14184) 895 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:56.954 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:56 smithi046 bash[16275]: cluster 2024-02-23T00:46:55.589555+0000 mgr.smithi046.lplrtl (mgr.14184) 896 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:56 smithi142 bash[20802]: cluster 2024-02-23T00:46:55.589555+0000 mgr.smithi046.lplrtl (mgr.14184) 896 : cluster [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:57.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:57 smithi046 bash[16275]: audit 2024-02-23T00:46:57.545969+0000 mon.smithi046 (mon.0) 888 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:46:58.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:57 smithi142 bash[20802]: audit 2024-02-23T00:46:57.545969+0000 mon.smithi046 (mon.0) 888 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:46:58.896 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:46:58.896 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:46:58.964 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:58 smithi046 bash[16275]: cluster 2024-02-23T00:46:57.590505+0000 mgr.smithi046.lplrtl (mgr.14184) 897 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:58 smithi142 bash[20802]: cluster 2024-02-23T00:46:57.590505+0000 mgr.smithi046.lplrtl (mgr.14184) 897 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:46:59.499 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:46:59.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:59 smithi046 bash[16275]: audit 2024-02-23T00:46:58.875403+0000 mgr.smithi046.lplrtl (mgr.14184) 898 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:46:59.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:46:59 smithi046 bash[16275]: cluster 2024-02-23T00:46:59.592438+0000 mgr.smithi046.lplrtl (mgr.14184) 899 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:00.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:59 smithi142 bash[20802]: audit 2024-02-23T00:46:58.875403+0000 mgr.smithi046.lplrtl (mgr.14184) 898 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:00.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:46:59 smithi142 bash[20802]: cluster 2024-02-23T00:46:59.592438+0000 mgr.smithi046.lplrtl (mgr.14184) 899 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:00.500 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:02.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:02 smithi046 bash[16275]: cluster 2024-02-23T00:47:01.593514+0000 mgr.smithi046.lplrtl (mgr.14184) 900 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:02 smithi142 bash[20802]: cluster 2024-02-23T00:47:01.593514+0000 mgr.smithi046.lplrtl (mgr.14184) 900 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:03.462 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:03.463 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:36:36.464448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:36:36.464714Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:36:36.464977Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:36:36.464151Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:36:36.463712Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:36:36.466804Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:36:36.465234Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:36:36.465490Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:36:36.466547Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:04.135 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:04.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:03.449790+0000 mgr.smithi046.lplrtl (mgr.14184) 901 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: cluster 2024-02-23T00:47:03.594707+0000 mgr.smithi046.lplrtl (mgr.14184) 902 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.174543+0000 mon.smithi046 (mon.0) 889 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.475496+0000 mon.smithi046 (mon.0) 890 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.477072+0000 mon.smithi046 (mon.0) 891 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.486417+0000 mon.smithi046 (mon.0) 892 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.496235+0000 mon.smithi046 (mon.0) 893 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:47:04.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:04 smithi046 bash[16275]: audit 2024-02-23T00:47:04.512086+0000 mon.smithi046 (mon.0) 894 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:03.449790+0000 mgr.smithi046.lplrtl (mgr.14184) 901 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: cluster 2024-02-23T00:47:03.594707+0000 mgr.smithi046.lplrtl (mgr.14184) 902 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.174543+0000 mon.smithi046 (mon.0) 889 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.475496+0000 mon.smithi046 (mon.0) 890 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.477072+0000 mon.smithi046 (mon.0) 891 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.486417+0000 mon.smithi046 (mon.0) 892 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.496235+0000 mon.smithi046 (mon.0) 893 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:47:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:04 smithi142 bash[20802]: audit 2024-02-23T00:47:04.512086+0000 mon.smithi046 (mon.0) 894 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:05.137 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:05.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:05 smithi046 bash[16275]: cluster 2024-02-23T00:47:04.488096+0000 mgr.smithi046.lplrtl (mgr.14184) 903 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:05.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:05 smithi046 bash[16275]: cephadm 2024-02-23T00:47:04.515727+0000 mgr.smithi046.lplrtl (mgr.14184) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.efjsud on smithi142 2024-02-23T00:47:05.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:05 smithi046 bash[16275]: cluster 2024-02-23T00:47:05.482433+0000 mon.smithi046 (mon.0) 895 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:47:05.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:05 smithi046 bash[16275]: cluster 2024-02-23T00:47:05.482526+0000 mon.smithi046 (mon.0) 896 : cluster [INF] Cluster is now healthy 2024-02-23T00:47:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:05 smithi142 bash[20802]: cluster 2024-02-23T00:47:04.488096+0000 mgr.smithi046.lplrtl (mgr.14184) 903 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:05 smithi142 bash[20802]: cephadm 2024-02-23T00:47:04.515727+0000 mgr.smithi046.lplrtl (mgr.14184) 904 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.efjsud on smithi142 2024-02-23T00:47:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:05 smithi142 bash[20802]: cluster 2024-02-23T00:47:05.482433+0000 mon.smithi046 (mon.0) 895 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:47:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:05 smithi142 bash[20802]: cluster 2024-02-23T00:47:05.482526+0000 mon.smithi046 (mon.0) 896 : cluster [INF] Cluster is now healthy 2024-02-23T00:47:07.962 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:07 smithi142 bash[20802]: cluster 2024-02-23T00:47:06.489517+0000 mgr.smithi046.lplrtl (mgr.14184) 905 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:07.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:07 smithi046 bash[16275]: cluster 2024-02-23T00:47:06.489517+0000 mgr.smithi046.lplrtl (mgr.14184) 905 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:08.248 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:08.248 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:44:48.630173Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cpffph on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:08.847 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:09.848 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:09.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:09 smithi046 bash[16275]: audit 2024-02-23T00:47:08.229979+0000 mgr.smithi046.lplrtl (mgr.14184) 906 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:09.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:09 smithi046 bash[16275]: cluster 2024-02-23T00:47:08.490891+0000 mgr.smithi046.lplrtl (mgr.14184) 907 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:09.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:09 smithi046 bash[16275]: audit 2024-02-23T00:47:08.727361+0000 mon.smithi046 (mon.0) 897 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.efjsud"}]: dispatch 2024-02-23T00:47:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:09 smithi142 bash[20802]: audit 2024-02-23T00:47:08.229979+0000 mgr.smithi046.lplrtl (mgr.14184) 906 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:09 smithi142 bash[20802]: cluster 2024-02-23T00:47:08.490891+0000 mgr.smithi046.lplrtl (mgr.14184) 907 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:09 smithi142 bash[20802]: audit 2024-02-23T00:47:08.727361+0000 mon.smithi046 (mon.0) 897 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.efjsud"}]: dispatch 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: cephadm 2024-02-23T00:47:08.726248+0000 mgr.smithi046.lplrtl (mgr.14184) 908 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.912 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: cephadm 2024-02-23T00:47:08.726724+0000 mgr.smithi046.lplrtl (mgr.14184) 909 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: cephadm 2024-02-23T00:47:08.729319+0000 mgr.smithi046.lplrtl (mgr.14184) 910 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:10.914 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:10.915 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:10 smithi046 bash[16275]: cephadm 2024-02-23T00:47:08.734742+0000 mgr.smithi046.lplrtl (mgr.14184) 911 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.niboku on smithi046 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: cephadm 2024-02-23T00:47:08.726248+0000 mgr.smithi046.lplrtl (mgr.14184) 908 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: cephadm 2024-02-23T00:47:08.726724+0000 mgr.smithi046.lplrtl (mgr.14184) 909 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: cephadm 2024-02-23T00:47:08.729319+0000 mgr.smithi046.lplrtl (mgr.14184) 910 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.efjsud ... 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:10 smithi142 bash[20802]: cephadm 2024-02-23T00:47:08.734742+0000 mgr.smithi046.lplrtl (mgr.14184) 911 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.niboku on smithi046 2024-02-23T00:47:11.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:11 smithi046 bash[16275]: cluster 2024-02-23T00:47:10.492624+0000 mgr.smithi046.lplrtl (mgr.14184) 912 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:12.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:11 smithi142 bash[20802]: cluster 2024-02-23T00:47:10.492624+0000 mgr.smithi046.lplrtl (mgr.14184) 912 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:12.932 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:12 smithi046 bash[16275]: cluster 2024-02-23T00:47:12.493920+0000 mgr.smithi046.lplrtl (mgr.14184) 913 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:12.978 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:12.978 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:53.251646Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.dyloan on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-dyloan\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.dyloan\nDeploy daemon haproxy.nfs.foo.smithi142.dyloan ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.533664Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.sycmij on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-sycmij\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.sycmij\nDeploy daemon haproxy.nfs.foo.smithi046.sycmij ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:45:57.537987Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.diacmy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:12 smithi142 bash[20802]: cluster 2024-02-23T00:47:12.493920+0000 mgr.smithi046.lplrtl (mgr.14184) 913 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:47:13.574 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: audit 2024-02-23T00:47:12.958423+0000 mgr.smithi046.lplrtl (mgr.14184) 914 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cephadm 2024-02-23T00:47:12.984710+0000 mgr.smithi046.lplrtl (mgr.14184) 915 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:47:13.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cephadm 2024-02-23T00:47:12.985213+0000 mgr.smithi046.lplrtl (mgr.14184) 916 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: audit 2024-02-23T00:47:12.985725+0000 mon.smithi046 (mon.0) 898 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.niboku"}]: dispatch 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cephadm 2024-02-23T00:47:12.986969+0000 mgr.smithi046.lplrtl (mgr.14184) 917 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cephadm 2024-02-23T00:47:12.991408+0000 mgr.smithi046.lplrtl (mgr.14184) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:47:13.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cephadm 2024-02-23T00:47:12.995147+0000 mgr.smithi046.lplrtl (mgr.14184) 919 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:47:13.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:13 smithi046 bash[16275]: cluster 2024-02-23T00:47:12.996147+0000 mgr.smithi046.lplrtl (mgr.14184) 920 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 108 B/s rd, 0 op/s 2024-02-23T00:47:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: audit 2024-02-23T00:47:12.958423+0000 mgr.smithi046.lplrtl (mgr.14184) 914 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cephadm 2024-02-23T00:47:12.984710+0000 mgr.smithi046.lplrtl (mgr.14184) 915 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:14.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cephadm 2024-02-23T00:47:12.985213+0000 mgr.smithi046.lplrtl (mgr.14184) 916 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: audit 2024-02-23T00:47:12.985725+0000 mon.smithi046 (mon.0) 898 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.niboku"}]: dispatch 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cephadm 2024-02-23T00:47:12.986969+0000 mgr.smithi046.lplrtl (mgr.14184) 917 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku 2024-02-23T00:47:14.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.niboku ... 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cephadm 2024-02-23T00:47:12.991408+0000 mgr.smithi046.lplrtl (mgr.14184) 918 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cephadm 2024-02-23T00:47:12.995147+0000 mgr.smithi046.lplrtl (mgr.14184) 919 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:47:14.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:13 smithi142 bash[20802]: cluster 2024-02-23T00:47:12.996147+0000 mgr.smithi046.lplrtl (mgr.14184) 920 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 108 B/s rd, 0 op/s 2024-02-23T00:47:14.575 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:14.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:14 smithi046 bash[16275]: cluster 2024-02-23T00:47:13.698412+0000 mon.smithi046 (mon.0) 899 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:47:14.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:14 smithi046 bash[16275]: audit 2024-02-23T00:47:13.971146+0000 mon.smithi046 (mon.0) 900 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:14 smithi142 bash[20802]: cluster 2024-02-23T00:47:13.698412+0000 mon.smithi046 (mon.0) 899 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:47:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:14 smithi142 bash[20802]: audit 2024-02-23T00:47:13.971146+0000 mon.smithi046 (mon.0) 900 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:47:15.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:15 smithi046 bash[16275]: cluster 2024-02-23T00:47:14.998194+0000 mgr.smithi046.lplrtl (mgr.14184) 921 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:15 smithi142 bash[20802]: cluster 2024-02-23T00:47:14.998194+0000 mgr.smithi046.lplrtl (mgr.14184) 921 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:17.597 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:17.597 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:18.157 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:18.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:18 smithi046 bash[16275]: cluster 2024-02-23T00:47:16.999773+0000 mgr.smithi046.lplrtl (mgr.14184) 922 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:18.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:18 smithi046 bash[16275]: audit 2024-02-23T00:47:17.582271+0000 mgr.smithi046.lplrtl (mgr.14184) 923 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:18.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:18 smithi142 bash[20802]: cluster 2024-02-23T00:47:16.999773+0000 mgr.smithi046.lplrtl (mgr.14184) 922 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:18.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:18 smithi142 bash[20802]: audit 2024-02-23T00:47:17.582271+0000 mgr.smithi046.lplrtl (mgr.14184) 923 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:19.158 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:20.435 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:20 smithi046 bash[16275]: cluster 2024-02-23T00:47:19.001166+0000 mgr.smithi046.lplrtl (mgr.14184) 924 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:20.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:20 smithi142 bash[20802]: cluster 2024-02-23T00:47:19.001166+0000 mgr.smithi046.lplrtl (mgr.14184) 924 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:22.117 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:22.117 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:22.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:22 smithi046 bash[16275]: cluster 2024-02-23T00:47:21.003079+0000 mgr.smithi046.lplrtl (mgr.14184) 925 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:22.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:22 smithi142 bash[20802]: cluster 2024-02-23T00:47:21.003079+0000 mgr.smithi046.lplrtl (mgr.14184) 925 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:22.693 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:23.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:23 smithi046 bash[16275]: audit 2024-02-23T00:47:22.097624+0000 mgr.smithi046.lplrtl (mgr.14184) 926 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:23.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:23 smithi142 bash[20802]: audit 2024-02-23T00:47:22.097624+0000 mgr.smithi046.lplrtl (mgr.14184) 926 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:23.694 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:24.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:24 smithi046 bash[16275]: cluster 2024-02-23T00:47:23.004676+0000 mgr.smithi046.lplrtl (mgr.14184) 927 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:24.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:24 smithi142 bash[20802]: cluster 2024-02-23T00:47:23.004676+0000 mgr.smithi046.lplrtl (mgr.14184) 927 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 97 B/s rd, 0 op/s 2024-02-23T00:47:26.406 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:26 smithi046 bash[16275]: cluster 2024-02-23T00:47:25.006752+0000 mgr.smithi046.lplrtl (mgr.14184) 928 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:26.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:26 smithi142 bash[20802]: cluster 2024-02-23T00:47:25.006752+0000 mgr.smithi046.lplrtl (mgr.14184) 928 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:26.768 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:26.768 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:27.344 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:28.345 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:28.358 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:28 smithi046 bash[16275]: audit 2024-02-23T00:47:26.749911+0000 mgr.smithi046.lplrtl (mgr.14184) 929 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:28.358 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:28 smithi046 bash[16275]: cluster 2024-02-23T00:47:27.008334+0000 mgr.smithi046.lplrtl (mgr.14184) 930 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:28.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:28 smithi142 bash[20802]: audit 2024-02-23T00:47:26.749911+0000 mgr.smithi046.lplrtl (mgr.14184) 929 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:28.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:28 smithi142 bash[20802]: cluster 2024-02-23T00:47:27.008334+0000 mgr.smithi046.lplrtl (mgr.14184) 930 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:30.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:30 smithi046 bash[16275]: cluster 2024-02-23T00:47:29.009774+0000 mgr.smithi046.lplrtl (mgr.14184) 931 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:30.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:30 smithi142 bash[20802]: cluster 2024-02-23T00:47:29.009774+0000 mgr.smithi046.lplrtl (mgr.14184) 931 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:31.376 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:31.376 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:31.911 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:32.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:32 smithi046 bash[16275]: cluster 2024-02-23T00:47:31.011706+0000 mgr.smithi046.lplrtl (mgr.14184) 932 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:32.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:32 smithi046 bash[16275]: audit 2024-02-23T00:47:31.358440+0000 mgr.smithi046.lplrtl (mgr.14184) 933 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:32.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:32 smithi142 bash[20802]: cluster 2024-02-23T00:47:31.011706+0000 mgr.smithi046.lplrtl (mgr.14184) 932 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:32.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:32 smithi142 bash[20802]: audit 2024-02-23T00:47:31.358440+0000 mgr.smithi046.lplrtl (mgr.14184) 933 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:32.912 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:34.172 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:34 smithi046 bash[16275]: cluster 2024-02-23T00:47:33.012769+0000 mgr.smithi046.lplrtl (mgr.14184) 934 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:34.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:34 smithi142 bash[20802]: cluster 2024-02-23T00:47:33.012769+0000 mgr.smithi046.lplrtl (mgr.14184) 934 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:35.844 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:35.845 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:36.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:36 smithi046 bash[16275]: cluster 2024-02-23T00:47:35.014881+0000 mgr.smithi046.lplrtl (mgr.14184) 935 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:36.440 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:36.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:36 smithi142 bash[20802]: cluster 2024-02-23T00:47:35.014881+0000 mgr.smithi046.lplrtl (mgr.14184) 935 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:37.441 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:37.454 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:37 smithi046 bash[16275]: audit 2024-02-23T00:47:35.826727+0000 mgr.smithi046.lplrtl (mgr.14184) 936 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:37.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:37 smithi142 bash[20802]: audit 2024-02-23T00:47:35.826727+0000 mgr.smithi046.lplrtl (mgr.14184) 936 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:38.467 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:38 smithi046 bash[16275]: cluster 2024-02-23T00:47:37.016320+0000 mgr.smithi046.lplrtl (mgr.14184) 937 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:38.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:38 smithi142 bash[20802]: cluster 2024-02-23T00:47:37.016320+0000 mgr.smithi046.lplrtl (mgr.14184) 937 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:40.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:40 smithi046 bash[16275]: cluster 2024-02-23T00:47:39.017714+0000 mgr.smithi046.lplrtl (mgr.14184) 938 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:40.423 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:40.423 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:40.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:40 smithi142 bash[20802]: cluster 2024-02-23T00:47:39.017714+0000 mgr.smithi046.lplrtl (mgr.14184) 938 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:41.008 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:41.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:41 smithi046 bash[16275]: audit 2024-02-23T00:47:40.402600+0000 mgr.smithi046.lplrtl (mgr.14184) 939 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:41.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:41 smithi142 bash[20802]: audit 2024-02-23T00:47:40.402600+0000 mgr.smithi046.lplrtl (mgr.14184) 939 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:42.009 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:42.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:42 smithi046 bash[16275]: cluster 2024-02-23T00:47:41.019706+0000 mgr.smithi046.lplrtl (mgr.14184) 940 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:42.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:42 smithi142 bash[20802]: cluster 2024-02-23T00:47:41.019706+0000 mgr.smithi046.lplrtl (mgr.14184) 940 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:44.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:44 smithi046 bash[16275]: cluster 2024-02-23T00:47:43.021359+0000 mgr.smithi046.lplrtl (mgr.14184) 941 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:44.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:44 smithi142 bash[20802]: cluster 2024-02-23T00:47:43.021359+0000 mgr.smithi046.lplrtl (mgr.14184) 941 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:44.999 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:44.999 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:45.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:46.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:46 smithi046 bash[16275]: audit 2024-02-23T00:47:44.978078+0000 mgr.smithi046.lplrtl (mgr.14184) 942 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:46.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:46 smithi046 bash[16275]: cluster 2024-02-23T00:47:45.023518+0000 mgr.smithi046.lplrtl (mgr.14184) 943 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:46 smithi142 bash[20802]: audit 2024-02-23T00:47:44.978078+0000 mgr.smithi046.lplrtl (mgr.14184) 942 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:46.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:46 smithi142 bash[20802]: cluster 2024-02-23T00:47:45.023518+0000 mgr.smithi046.lplrtl (mgr.14184) 943 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:46.597 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:48.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:48 smithi046 bash[16275]: cluster 2024-02-23T00:47:47.025087+0000 mgr.smithi046.lplrtl (mgr.14184) 944 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:48.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:48 smithi142 bash[20802]: cluster 2024-02-23T00:47:47.025087+0000 mgr.smithi046.lplrtl (mgr.14184) 944 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:49.720 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:49.720 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:50.292 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:50.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:50 smithi046 bash[16275]: cluster 2024-02-23T00:47:49.026507+0000 mgr.smithi046.lplrtl (mgr.14184) 945 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:50.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:50 smithi142 bash[20802]: cluster 2024-02-23T00:47:49.026507+0000 mgr.smithi046.lplrtl (mgr.14184) 945 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:51.293 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:51.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:51 smithi046 bash[16275]: audit 2024-02-23T00:47:49.701955+0000 mgr.smithi046.lplrtl (mgr.14184) 946 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:51.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:51 smithi142 bash[20802]: audit 2024-02-23T00:47:49.701955+0000 mgr.smithi046.lplrtl (mgr.14184) 946 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:52.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:52 smithi046 bash[16275]: cluster 2024-02-23T00:47:51.028508+0000 mgr.smithi046.lplrtl (mgr.14184) 947 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:52.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:52 smithi142 bash[20802]: cluster 2024-02-23T00:47:51.028508+0000 mgr.smithi046.lplrtl (mgr.14184) 947 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:47:54.276 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:54.277 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:54.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:54 smithi046 bash[16275]: cluster 2024-02-23T00:47:53.030134+0000 mgr.smithi046.lplrtl (mgr.14184) 948 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:54.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:54 smithi142 bash[20802]: cluster 2024-02-23T00:47:53.030134+0000 mgr.smithi046.lplrtl (mgr.14184) 948 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:54.872 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:47:55.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:55 smithi046 bash[16275]: audit 2024-02-23T00:47:54.260535+0000 mgr.smithi046.lplrtl (mgr.14184) 949 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:55.666 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:55 smithi142 bash[20802]: audit 2024-02-23T00:47:54.260535+0000 mgr.smithi046.lplrtl (mgr.14184) 949 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:47:55.873 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:47:56.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:56 smithi046 bash[16275]: cluster 2024-02-23T00:47:55.032185+0000 mgr.smithi046.lplrtl (mgr.14184) 950 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:56.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:56 smithi142 bash[20802]: cluster 2024-02-23T00:47:55.032185+0000 mgr.smithi046.lplrtl (mgr.14184) 950 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:58.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:47:58 smithi046 bash[16275]: cluster 2024-02-23T00:47:57.033711+0000 mgr.smithi046.lplrtl (mgr.14184) 951 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:58.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:47:58 smithi142 bash[20802]: cluster 2024-02-23T00:47:57.033711+0000 mgr.smithi046.lplrtl (mgr.14184) 951 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:47:58.966 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:47:58.966 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:47:59.579 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:00.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:00 smithi046 bash[16275]: audit 2024-02-23T00:47:58.945297+0000 mgr.smithi046.lplrtl (mgr.14184) 952 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:00.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:00 smithi046 bash[16275]: cluster 2024-02-23T00:47:59.035270+0000 mgr.smithi046.lplrtl (mgr.14184) 953 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:00.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:00 smithi142 bash[20802]: audit 2024-02-23T00:47:58.945297+0000 mgr.smithi046.lplrtl (mgr.14184) 952 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:00.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:00 smithi142 bash[20802]: cluster 2024-02-23T00:47:59.035270+0000 mgr.smithi046.lplrtl (mgr.14184) 953 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:00.581 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:02.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:02 smithi046 bash[16275]: cluster 2024-02-23T00:48:01.037198+0000 mgr.smithi046.lplrtl (mgr.14184) 954 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:02.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:02 smithi142 bash[20802]: cluster 2024-02-23T00:48:01.037198+0000 mgr.smithi046.lplrtl (mgr.14184) 954 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:03.683 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:03.684 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:04.288 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:04.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:04 smithi142 bash[20802]: cluster 2024-02-23T00:48:03.038858+0000 mgr.smithi046.lplrtl (mgr.14184) 955 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:04.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:04 smithi142 bash[20802]: audit 2024-02-23T00:48:03.665537+0000 mgr.smithi046.lplrtl (mgr.14184) 956 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:04.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:04 smithi046 bash[16275]: cluster 2024-02-23T00:48:03.038858+0000 mgr.smithi046.lplrtl (mgr.14184) 955 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:04.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:04 smithi046 bash[16275]: audit 2024-02-23T00:48:03.665537+0000 mgr.smithi046.lplrtl (mgr.14184) 956 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:05.289 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:06.507 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:06 smithi046 bash[16275]: cluster 2024-02-23T00:48:05.041285+0000 mgr.smithi046.lplrtl (mgr.14184) 957 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:06.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:06 smithi142 bash[20802]: cluster 2024-02-23T00:48:05.041285+0000 mgr.smithi046.lplrtl (mgr.14184) 957 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:08.145 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:08.146 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:08.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:08 smithi046 bash[16275]: cluster 2024-02-23T00:48:07.042803+0000 mgr.smithi046.lplrtl (mgr.14184) 958 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:08.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:08 smithi142 bash[20802]: cluster 2024-02-23T00:48:07.042803+0000 mgr.smithi046.lplrtl (mgr.14184) 958 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:08.740 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:09.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:09 smithi046 bash[16275]: audit 2024-02-23T00:48:08.125120+0000 mgr.smithi046.lplrtl (mgr.14184) 959 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:09.742 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:09 smithi142 bash[20802]: audit 2024-02-23T00:48:08.125120+0000 mgr.smithi046.lplrtl (mgr.14184) 959 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:10.557 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:10 smithi046 bash[16275]: cluster 2024-02-23T00:48:09.044333+0000 mgr.smithi046.lplrtl (mgr.14184) 960 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:10.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:10 smithi142 bash[20802]: cluster 2024-02-23T00:48:09.044333+0000 mgr.smithi046.lplrtl (mgr.14184) 960 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:12.538 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:12 smithi046 bash[16275]: cluster 2024-02-23T00:48:11.046554+0000 mgr.smithi046.lplrtl (mgr.14184) 961 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:12.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:12 smithi142 bash[20802]: cluster 2024-02-23T00:48:11.046554+0000 mgr.smithi046.lplrtl (mgr.14184) 961 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:12.892 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:12.892 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:13.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:13.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:13 smithi046 bash[16275]: audit 2024-02-23T00:48:12.998411+0000 mon.smithi046 (mon.0) 901 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:48:13.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:13 smithi142 bash[20802]: audit 2024-02-23T00:48:12.998411+0000 mon.smithi046 (mon.0) 901 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:48:14.472 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:14.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:14 smithi046 bash[16275]: audit 2024-02-23T00:48:12.874732+0000 mgr.smithi046.lplrtl (mgr.14184) 962 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:14.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:14 smithi046 bash[16275]: cluster 2024-02-23T00:48:13.048199+0000 mgr.smithi046.lplrtl (mgr.14184) 963 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:14.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:14 smithi046 bash[16275]: audit 2024-02-23T00:48:13.308102+0000 mon.smithi046 (mon.0) 902 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:14 smithi142 bash[20802]: audit 2024-02-23T00:48:12.874732+0000 mgr.smithi046.lplrtl (mgr.14184) 962 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:14 smithi142 bash[20802]: cluster 2024-02-23T00:48:13.048199+0000 mgr.smithi046.lplrtl (mgr.14184) 963 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:14 smithi142 bash[20802]: audit 2024-02-23T00:48:13.308102+0000 mon.smithi046 (mon.0) 902 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:16.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:16 smithi046 bash[16275]: cluster 2024-02-23T00:48:15.049722+0000 mgr.smithi046.lplrtl (mgr.14184) 964 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:16.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:16 smithi142 bash[20802]: cluster 2024-02-23T00:48:15.049722+0000 mgr.smithi046.lplrtl (mgr.14184) 964 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:17.515 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:17.515 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:37:50.426488Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:37:50.426693Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:37:50.426816Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:37:50.426958Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:37:50.427185Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:37:50.427072Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:37:50.427693Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:18.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:18.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:18 smithi046 bash[16275]: cluster 2024-02-23T00:48:17.050633+0000 mgr.smithi046.lplrtl (mgr.14184) 965 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:18.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:18 smithi046 bash[16275]: audit 2024-02-23T00:48:17.495817+0000 mgr.smithi046.lplrtl (mgr.14184) 966 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:18.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:18 smithi142 bash[20802]: cluster 2024-02-23T00:48:17.050633+0000 mgr.smithi046.lplrtl (mgr.14184) 965 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:18.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:18 smithi142 bash[20802]: audit 2024-02-23T00:48:17.495817+0000 mgr.smithi046.lplrtl (mgr.14184) 966 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:19.088 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:18.910176+0000 mon.smithi046 (mon.0) 903 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: cluster 2024-02-23T00:48:19.052013+0000 mgr.smithi046.lplrtl (mgr.14184) 967 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:19.197115+0000 mon.smithi046 (mon.0) 904 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:19.198817+0000 mon.smithi046 (mon.0) 905 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:19.207707+0000 mon.smithi046 (mon.0) 906 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: cluster 2024-02-23T00:48:19.208687+0000 mgr.smithi046.lplrtl (mgr.14184) 968 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:19.217923+0000 mon.smithi046 (mon.0) 907 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: audit 2024-02-23T00:48:19.232722+0000 mon.smithi046 (mon.0) 908 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:19 smithi046 bash[16275]: cephadm 2024-02-23T00:48:19.236528+0000 mgr.smithi046.lplrtl (mgr.14184) 969 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.auxcil on smithi142 2024-02-23T00:48:20.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:18.910176+0000 mon.smithi046 (mon.0) 903 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: cluster 2024-02-23T00:48:19.052013+0000 mgr.smithi046.lplrtl (mgr.14184) 967 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:19.197115+0000 mon.smithi046 (mon.0) 904 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:19.198817+0000 mon.smithi046 (mon.0) 905 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:19.207707+0000 mon.smithi046 (mon.0) 906 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: cluster 2024-02-23T00:48:19.208687+0000 mgr.smithi046.lplrtl (mgr.14184) 968 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:19.217923+0000 mon.smithi046 (mon.0) 907 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: audit 2024-02-23T00:48:19.232722+0000 mon.smithi046 (mon.0) 908 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:19 smithi142 bash[20802]: cephadm 2024-02-23T00:48:19.236528+0000 mgr.smithi046.lplrtl (mgr.14184) 969 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.auxcil on smithi142 2024-02-23T00:48:21.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:20 smithi046 bash[16275]: cluster 2024-02-23T00:48:19.906405+0000 mon.smithi046 (mon.0) 909 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:48:21.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:20 smithi046 bash[16275]: cluster 2024-02-23T00:48:19.906442+0000 mon.smithi046 (mon.0) 910 : cluster [INF] Cluster is now healthy 2024-02-23T00:48:21.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:20 smithi046 bash[16275]: audit 2024-02-23T00:48:20.332397+0000 mon.smithi046 (mon.0) 911 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:21.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:20 smithi142 bash[20802]: cluster 2024-02-23T00:48:19.906405+0000 mon.smithi046 (mon.0) 909 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:48:21.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:20 smithi142 bash[20802]: cluster 2024-02-23T00:48:19.906442+0000 mon.smithi046 (mon.0) 910 : cluster [INF] Cluster is now healthy 2024-02-23T00:48:21.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:20 smithi142 bash[20802]: audit 2024-02-23T00:48:20.332397+0000 mon.smithi046 (mon.0) 911 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:22.096 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:22.097 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:45:57.542104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.cvlmjp on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:22.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:21 smithi046 bash[16275]: cluster 2024-02-23T00:48:21.210055+0000 mgr.smithi046.lplrtl (mgr.14184) 970 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:22.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:21 smithi142 bash[20802]: cluster 2024-02-23T00:48:21.210055+0000 mgr.smithi046.lplrtl (mgr.14184) 970 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:22.686 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:23.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:22 smithi046 bash[16275]: audit 2024-02-23T00:48:22.077626+0000 mgr.smithi046.lplrtl (mgr.14184) 971 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:23.255 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:22 smithi142 bash[20802]: audit 2024-02-23T00:48:22.077626+0000 mgr.smithi046.lplrtl (mgr.14184) 971 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:23.688 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:23.950 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: cluster 2024-02-23T00:48:23.211448+0000 mgr.smithi046.lplrtl (mgr.14184) 972 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:23.950 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: cephadm 2024-02-23T00:48:23.369599+0000 mgr.smithi046.lplrtl (mgr.14184) 973 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: cephadm 2024-02-23T00:48:23.370189+0000 mgr.smithi046.lplrtl (mgr.14184) 974 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: audit 2024-02-23T00:48:23.370894+0000 mon.smithi046 (mon.0) 912 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.auxcil"}]: dispatch 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: cephadm 2024-02-23T00:48:23.372853+0000 mgr.smithi046.lplrtl (mgr.14184) 975 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.245 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:23 smithi046 bash[16275]: cephadm 2024-02-23T00:48:23.377940+0000 mgr.smithi046.lplrtl (mgr.14184) 976 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.brdgqz on smithi046 2024-02-23T00:48:24.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: cluster 2024-02-23T00:48:23.211448+0000 mgr.smithi046.lplrtl (mgr.14184) 972 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:24.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: cephadm 2024-02-23T00:48:23.369599+0000 mgr.smithi046.lplrtl (mgr.14184) 973 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:48:24.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: cephadm 2024-02-23T00:48:23.370189+0000 mgr.smithi046.lplrtl (mgr.14184) 974 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: audit 2024-02-23T00:48:23.370894+0000 mon.smithi046 (mon.0) 912 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.auxcil"}]: dispatch 2024-02-23T00:48:24.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: cephadm 2024-02-23T00:48:23.372853+0000 mgr.smithi046.lplrtl (mgr.14184) 975 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.auxcil ... 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:24.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:23 smithi142 bash[20802]: cephadm 2024-02-23T00:48:23.377940+0000 mgr.smithi046.lplrtl (mgr.14184) 976 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.brdgqz on smithi046 2024-02-23T00:48:26.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:26 smithi046 bash[16275]: cluster 2024-02-23T00:48:25.212527+0000 mgr.smithi046.lplrtl (mgr.14184) 977 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:26.744 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:26.744 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:08.728999Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.efjsud on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-efjsud\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.efjsud\nDeploy daemon haproxy.nfs.foo.smithi142.efjsud ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.986668Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.niboku on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-niboku\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.niboku\nDeploy daemon haproxy.nfs.foo.smithi046.niboku ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:47:12.991193Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.frytib on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:26.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:26 smithi142 bash[20802]: cluster 2024-02-23T00:48:25.212527+0000 mgr.smithi046.lplrtl (mgr.14184) 977 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:27.406 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:28.407 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:28.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: audit 2024-02-23T00:48:26.731346+0000 mgr.smithi046.lplrtl (mgr.14184) 978 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:28.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cluster 2024-02-23T00:48:27.213718+0000 mgr.smithi046.lplrtl (mgr.14184) 979 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cephadm 2024-02-23T00:48:27.441564+0000 mgr.smithi046.lplrtl (mgr.14184) 980 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cephadm 2024-02-23T00:48:27.442036+0000 mgr.smithi046.lplrtl (mgr.14184) 981 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: audit 2024-02-23T00:48:27.442719+0000 mon.smithi046 (mon.0) 913 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.brdgqz"}]: dispatch 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cephadm 2024-02-23T00:48:27.444449+0000 mgr.smithi046.lplrtl (mgr.14184) 982 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cephadm 2024-02-23T00:48:27.448703+0000 mgr.smithi046.lplrtl (mgr.14184) 983 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:48:28.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cephadm 2024-02-23T00:48:27.452800+0000 mgr.smithi046.lplrtl (mgr.14184) 984 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:48:28.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:28 smithi046 bash[16275]: cluster 2024-02-23T00:48:27.454684+0000 mgr.smithi046.lplrtl (mgr.14184) 985 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 B/s rd, 0 op/s 2024-02-23T00:48:28.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: audit 2024-02-23T00:48:26.731346+0000 mgr.smithi046.lplrtl (mgr.14184) 978 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:28.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cluster 2024-02-23T00:48:27.213718+0000 mgr.smithi046.lplrtl (mgr.14184) 979 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:48:28.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cephadm 2024-02-23T00:48:27.441564+0000 mgr.smithi046.lplrtl (mgr.14184) 980 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:48:28.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cephadm 2024-02-23T00:48:27.442036+0000 mgr.smithi046.lplrtl (mgr.14184) 981 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: audit 2024-02-23T00:48:27.442719+0000 mon.smithi046 (mon.0) 913 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.brdgqz"}]: dispatch 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cephadm 2024-02-23T00:48:27.444449+0000 mgr.smithi046.lplrtl (mgr.14184) 982 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.brdgqz ... 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cephadm 2024-02-23T00:48:27.448703+0000 mgr.smithi046.lplrtl (mgr.14184) 983 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cephadm 2024-02-23T00:48:27.452800+0000 mgr.smithi046.lplrtl (mgr.14184) 984 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:48:28.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:28 smithi142 bash[20802]: cluster 2024-02-23T00:48:27.454684+0000 mgr.smithi046.lplrtl (mgr.14184) 985 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 B/s rd, 0 op/s 2024-02-23T00:48:29.574 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:29 smithi046 bash[16275]: cluster 2024-02-23T00:48:28.271809+0000 mon.smithi046 (mon.0) 914 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:48:29.574 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:29 smithi046 bash[16275]: audit 2024-02-23T00:48:29.034176+0000 mon.smithi046 (mon.0) 915 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:29.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:29 smithi142 bash[20802]: cluster 2024-02-23T00:48:28.271809+0000 mon.smithi046 (mon.0) 914 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:48:29.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:29 smithi142 bash[20802]: audit 2024-02-23T00:48:29.034176+0000 mon.smithi046 (mon.0) 915 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:30.556 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:30 smithi046 bash[16275]: cluster 2024-02-23T00:48:29.455597+0000 mgr.smithi046.lplrtl (mgr.14184) 986 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:30.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:30 smithi142 bash[20802]: cluster 2024-02-23T00:48:29.455597+0000 mgr.smithi046.lplrtl (mgr.14184) 986 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:31.581 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:31.582 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:32.171 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:32.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:32 smithi046 bash[16275]: cluster 2024-02-23T00:48:31.457171+0000 mgr.smithi046.lplrtl (mgr.14184) 987 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:32.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:32 smithi046 bash[16275]: audit 2024-02-23T00:48:31.565586+0000 mgr.smithi046.lplrtl (mgr.14184) 988 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:32 smithi142 bash[20802]: cluster 2024-02-23T00:48:31.457171+0000 mgr.smithi046.lplrtl (mgr.14184) 987 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:32 smithi142 bash[20802]: audit 2024-02-23T00:48:31.565586+0000 mgr.smithi046.lplrtl (mgr.14184) 988 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:33.172 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:34.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:34 smithi046 bash[16275]: cluster 2024-02-23T00:48:33.458483+0000 mgr.smithi046.lplrtl (mgr.14184) 989 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:34 smithi142 bash[20802]: cluster 2024-02-23T00:48:33.458483+0000 mgr.smithi046.lplrtl (mgr.14184) 989 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:36.184 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:36.184 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:36.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:36 smithi046 bash[16275]: audit 2024-02-23T00:48:35.333324+0000 mon.smithi046 (mon.0) 916 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:36.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:36 smithi046 bash[16275]: cluster 2024-02-23T00:48:35.460141+0000 mgr.smithi046.lplrtl (mgr.14184) 990 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:36 smithi142 bash[20802]: audit 2024-02-23T00:48:35.333324+0000 mon.smithi046 (mon.0) 916 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:48:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:36 smithi142 bash[20802]: cluster 2024-02-23T00:48:35.460141+0000 mgr.smithi046.lplrtl (mgr.14184) 990 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:36.764 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:37 smithi046 bash[16275]: audit 2024-02-23T00:48:36.165060+0000 mgr.smithi046.lplrtl (mgr.14184) 991 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:37 smithi142 bash[20802]: audit 2024-02-23T00:48:36.165060+0000 mgr.smithi046.lplrtl (mgr.14184) 991 : audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:37.764 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:38.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:38 smithi046 bash[16275]: cluster 2024-02-23T00:48:37.461721+0000 mgr.smithi046.lplrtl (mgr.14184) 992 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:38 smithi142 bash[20802]: cluster 2024-02-23T00:48:37.461721+0000 mgr.smithi046.lplrtl (mgr.14184) 992 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:48:40.697 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:40.697 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:40.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:40 smithi142 bash[20802]: cluster 2024-02-23T00:48:39.462925+0000 mgr.smithi046.lplrtl (mgr.14184) 993 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:40.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:40 smithi046 bash[16275]: cluster 2024-02-23T00:48:39.462925+0000 mgr.smithi046.lplrtl (mgr.14184) 993 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:41.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:41.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:41 smithi046 bash[16275]: audit 2024-02-23T00:48:40.684386+0000 mgr.smithi046.lplrtl (mgr.14184) 994 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:41 smithi142 bash[20802]: audit 2024-02-23T00:48:40.684386+0000 mgr.smithi046.lplrtl (mgr.14184) 994 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:42.303 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:42 smithi046 bash[16275]: cluster 2024-02-23T00:48:41.464590+0000 mgr.smithi046.lplrtl (mgr.14184) 995 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:43.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:42 smithi142 bash[20802]: cluster 2024-02-23T00:48:41.464590+0000 mgr.smithi046.lplrtl (mgr.14184) 995 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:44.870 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:44 smithi046 bash[16275]: cluster 2024-02-23T00:48:43.465791+0000 mgr.smithi046.lplrtl (mgr.14184) 996 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:44 smithi142 bash[20802]: cluster 2024-02-23T00:48:43.465791+0000 mgr.smithi046.lplrtl (mgr.14184) 996 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:45.307 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:45.307 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:45.847 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:46.848 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:46.861 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:46 smithi046 bash[16275]: audit 2024-02-23T00:48:45.291954+0000 mgr.smithi046.lplrtl (mgr.14184) 997 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:46.861 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:46 smithi046 bash[16275]: cluster 2024-02-23T00:48:45.466946+0000 mgr.smithi046.lplrtl (mgr.14184) 998 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:46 smithi142 bash[20802]: audit 2024-02-23T00:48:45.291954+0000 mgr.smithi046.lplrtl (mgr.14184) 997 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:46 smithi142 bash[20802]: cluster 2024-02-23T00:48:45.466946+0000 mgr.smithi046.lplrtl (mgr.14184) 998 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:48.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:48 smithi046 bash[16275]: cluster 2024-02-23T00:48:47.468424+0000 mgr.smithi046.lplrtl (mgr.14184) 999 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:49.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:48 smithi142 bash[20802]: cluster 2024-02-23T00:48:47.468424+0000 mgr.smithi046.lplrtl (mgr.14184) 999 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:49.906 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:49.907 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:50.525 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:50.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:50 smithi142 bash[20802]: cluster 2024-02-23T00:48:49.469437+0000 mgr.smithi046.lplrtl (mgr.14184) 1000 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:50.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:50 smithi046 bash[16275]: cluster 2024-02-23T00:48:49.469437+0000 mgr.smithi046.lplrtl (mgr.14184) 1000 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:51.526 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:51.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:51 smithi046 bash[16275]: audit 2024-02-23T00:48:49.893775+0000 mgr.smithi046.lplrtl (mgr.14184) 1001 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:52.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:51 smithi142 bash[20802]: audit 2024-02-23T00:48:49.893775+0000 mgr.smithi046.lplrtl (mgr.14184) 1001 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:52.861 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:52 smithi046 bash[16275]: cluster 2024-02-23T00:48:51.471096+0000 mgr.smithi046.lplrtl (mgr.14184) 1002 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:52 smithi142 bash[20802]: cluster 2024-02-23T00:48:51.471096+0000 mgr.smithi046.lplrtl (mgr.14184) 1002 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:48:54.617 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:54.618 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:54.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:54 smithi046 bash[16275]: cluster 2024-02-23T00:48:53.472739+0000 mgr.smithi046.lplrtl (mgr.14184) 1003 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:54 smithi142 bash[20802]: cluster 2024-02-23T00:48:53.472739+0000 mgr.smithi046.lplrtl (mgr.14184) 1003 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:55.238 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:48:55.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:55 smithi046 bash[16275]: audit 2024-02-23T00:48:54.604564+0000 mgr.smithi046.lplrtl (mgr.14184) 1004 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:55 smithi142 bash[20802]: audit 2024-02-23T00:48:54.604564+0000 mgr.smithi046.lplrtl (mgr.14184) 1004 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:48:56.238 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:48:56.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:56 smithi046 bash[16275]: cluster 2024-02-23T00:48:55.474877+0000 mgr.smithi046.lplrtl (mgr.14184) 1005 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:57.153 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:56 smithi142 bash[20802]: cluster 2024-02-23T00:48:55.474877+0000 mgr.smithi046.lplrtl (mgr.14184) 1005 : cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:58.866 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:48:58 smithi046 bash[16275]: cluster 2024-02-23T00:48:57.476099+0000 mgr.smithi046.lplrtl (mgr.14184) 1006 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:48:58 smithi142 bash[20802]: cluster 2024-02-23T00:48:57.476099+0000 mgr.smithi046.lplrtl (mgr.14184) 1006 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:48:59.233 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:48:59.233 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:48:59.828 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:00.829 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:00.841 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:00 smithi046 bash[16275]: audit 2024-02-23T00:48:59.213019+0000 mgr.smithi046.lplrtl (mgr.14184) 1007 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:00.841 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:00 smithi046 bash[16275]: cluster 2024-02-23T00:48:59.477633+0000 mgr.smithi046.lplrtl (mgr.14184) 1008 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:01.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:00 smithi142 bash[20802]: audit 2024-02-23T00:48:59.213019+0000 mgr.smithi046.lplrtl (mgr.14184) 1007 : audit [DBG] from='client.15322 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:01.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:00 smithi142 bash[20802]: cluster 2024-02-23T00:48:59.477633+0000 mgr.smithi046.lplrtl (mgr.14184) 1008 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:02.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:02 smithi046 bash[16275]: cluster 2024-02-23T00:49:01.479330+0000 mgr.smithi046.lplrtl (mgr.14184) 1009 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:02 smithi142 bash[20802]: cluster 2024-02-23T00:49:01.479330+0000 mgr.smithi046.lplrtl (mgr.14184) 1009 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:03.793 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:03.793 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:04.346 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:04.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:04 smithi046 bash[16275]: cluster 2024-02-23T00:49:03.480600+0000 mgr.smithi046.lplrtl (mgr.14184) 1010 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:04 smithi142 bash[20802]: cluster 2024-02-23T00:49:03.480600+0000 mgr.smithi046.lplrtl (mgr.14184) 1010 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:05.347 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:05.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:05 smithi046 bash[16275]: audit 2024-02-23T00:49:03.777257+0000 mgr.smithi046.lplrtl (mgr.14184) 1011 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:05 smithi142 bash[20802]: audit 2024-02-23T00:49:03.777257+0000 mgr.smithi046.lplrtl (mgr.14184) 1011 : audit [DBG] from='client.15326 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:06.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:06 smithi046 bash[16275]: cluster 2024-02-23T00:49:05.482560+0000 mgr.smithi046.lplrtl (mgr.14184) 1012 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:06 smithi142 bash[20802]: cluster 2024-02-23T00:49:05.482560+0000 mgr.smithi046.lplrtl (mgr.14184) 1012 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:08.440 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:08.440 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:08 smithi046 bash[16275]: cluster 2024-02-23T00:49:07.484241+0000 mgr.smithi046.lplrtl (mgr.14184) 1013 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:08 smithi142 bash[20802]: cluster 2024-02-23T00:49:07.484241+0000 mgr.smithi046.lplrtl (mgr.14184) 1013 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:09.009 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:09.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:09 smithi046 bash[16275]: audit 2024-02-23T00:49:08.420537+0000 mgr.smithi046.lplrtl (mgr.14184) 1014 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:09 smithi142 bash[20802]: audit 2024-02-23T00:49:08.420537+0000 mgr.smithi046.lplrtl (mgr.14184) 1014 : audit [DBG] from='client.15330 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:10.010 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:10.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:10 smithi046 bash[16275]: cluster 2024-02-23T00:49:09.485756+0000 mgr.smithi046.lplrtl (mgr.14184) 1015 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:11.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:10 smithi142 bash[20802]: cluster 2024-02-23T00:49:09.485756+0000 mgr.smithi046.lplrtl (mgr.14184) 1015 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:12.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:12 smithi046 bash[16275]: cluster 2024-02-23T00:49:11.486866+0000 mgr.smithi046.lplrtl (mgr.14184) 1016 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:12 smithi142 bash[20802]: cluster 2024-02-23T00:49:11.486866+0000 mgr.smithi046.lplrtl (mgr.14184) 1016 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:13.204 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:13.204 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:13.804 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:14.806 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:14.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:14 smithi046 bash[16275]: audit 2024-02-23T00:49:13.185039+0000 mgr.smithi046.lplrtl (mgr.14184) 1017 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:14.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:14 smithi046 bash[16275]: cluster 2024-02-23T00:49:13.488401+0000 mgr.smithi046.lplrtl (mgr.14184) 1018 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:14 smithi142 bash[20802]: audit 2024-02-23T00:49:13.185039+0000 mgr.smithi046.lplrtl (mgr.14184) 1017 : audit [DBG] from='client.15334 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:14 smithi142 bash[20802]: cluster 2024-02-23T00:49:13.488401+0000 mgr.smithi046.lplrtl (mgr.14184) 1018 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:16.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:16 smithi046 bash[16275]: cluster 2024-02-23T00:49:15.490481+0000 mgr.smithi046.lplrtl (mgr.14184) 1019 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:16 smithi142 bash[20802]: cluster 2024-02-23T00:49:15.490481+0000 mgr.smithi046.lplrtl (mgr.14184) 1019 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:17.793 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:17.793 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:18.383 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:18 smithi046 bash[16275]: cluster 2024-02-23T00:49:17.492098+0000 mgr.smithi046.lplrtl (mgr.14184) 1020 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:18 smithi142 bash[20802]: cluster 2024-02-23T00:49:17.492098+0000 mgr.smithi046.lplrtl (mgr.14184) 1020 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:19.384 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:19 smithi142 bash[20802]: audit 2024-02-23T00:49:17.780330+0000 mgr.smithi046.lplrtl (mgr.14184) 1021 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:20.076 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:19 smithi046 bash[16275]: audit 2024-02-23T00:49:17.780330+0000 mgr.smithi046.lplrtl (mgr.14184) 1021 : audit [DBG] from='client.15338 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:20.711 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:20 smithi046 bash[16275]: cluster 2024-02-23T00:49:19.493599+0000 mgr.smithi046.lplrtl (mgr.14184) 1022 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:20 smithi142 bash[20802]: cluster 2024-02-23T00:49:19.493599+0000 mgr.smithi046.lplrtl (mgr.14184) 1022 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:22.419 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:22.419 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:22.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:22 smithi046 bash[16275]: cluster 2024-02-23T00:49:21.495285+0000 mgr.smithi046.lplrtl (mgr.14184) 1023 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:22.983 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:22 smithi142 bash[20802]: cluster 2024-02-23T00:49:21.495285+0000 mgr.smithi046.lplrtl (mgr.14184) 1023 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:23.984 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:23.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:23 smithi046 bash[16275]: audit 2024-02-23T00:49:22.400883+0000 mgr.smithi046.lplrtl (mgr.14184) 1024 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:23 smithi142 bash[20802]: audit 2024-02-23T00:49:22.400883+0000 mgr.smithi046.lplrtl (mgr.14184) 1024 : audit [DBG] from='client.15342 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:24.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:24 smithi046 bash[16275]: cluster 2024-02-23T00:49:23.496920+0000 mgr.smithi046.lplrtl (mgr.14184) 1025 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:24 smithi142 bash[20802]: cluster 2024-02-23T00:49:23.496920+0000 mgr.smithi046.lplrtl (mgr.14184) 1025 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:25.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:25 smithi046 bash[16275]: cluster 2024-02-23T00:49:25.499036+0000 mgr.smithi046.lplrtl (mgr.14184) 1026 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:25 smithi142 bash[20802]: cluster 2024-02-23T00:49:25.499036+0000 mgr.smithi046.lplrtl (mgr.14184) 1026 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:27.060 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:27.060 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:27.617 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:27.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:27 smithi046 bash[16275]: audit 2024-02-23T00:49:27.457985+0000 mon.smithi046 (mon.0) 917 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:49:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:27 smithi142 bash[20802]: audit 2024-02-23T00:49:27.457985+0000 mon.smithi046 (mon.0) 917 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:49:28.757 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:27.046675+0000 mgr.smithi046.lplrtl (mgr.14184) 1027 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: cluster 2024-02-23T00:49:27.500162+0000 mgr.smithi046.lplrtl (mgr.14184) 1028 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:27.764838+0000 mon.smithi046 (mon.0) 918 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:28.087858+0000 mon.smithi046 (mon.0) 919 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:49:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:28.089804+0000 mon.smithi046 (mon.0) 920 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:49:28.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:28.099967+0000 mon.smithi046 (mon.0) 921 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:28.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:28.109122+0000 mon.smithi046 (mon.0) 922 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:49:28.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:28 smithi046 bash[16275]: audit 2024-02-23T00:49:28.129968+0000 mon.smithi046 (mon.0) 923 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:27.046675+0000 mgr.smithi046.lplrtl (mgr.14184) 1027 : audit [DBG] from='client.15346 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: cluster 2024-02-23T00:49:27.500162+0000 mgr.smithi046.lplrtl (mgr.14184) 1028 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:27.764838+0000 mon.smithi046 (mon.0) 918 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:28.087858+0000 mon.smithi046 (mon.0) 919 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:28.089804+0000 mon.smithi046 (mon.0) 920 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:28.099967+0000 mon.smithi046 (mon.0) 921 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:28.109122+0000 mon.smithi046 (mon.0) 922 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:49:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:28 smithi142 bash[20802]: audit 2024-02-23T00:49:28.129968+0000 mon.smithi046 (mon.0) 923 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:29.830 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:29 smithi046 bash[16275]: cluster 2024-02-23T00:49:28.101162+0000 mgr.smithi046.lplrtl (mgr.14184) 1029 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:29.830 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:29 smithi046 bash[16275]: cephadm 2024-02-23T00:49:28.136098+0000 mgr.smithi046.lplrtl (mgr.14184) 1030 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qwezvc on smithi142 2024-02-23T00:49:29.830 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:29 smithi046 bash[16275]: cluster 2024-02-23T00:49:29.096068+0000 mon.smithi046 (mon.0) 924 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:49:29.830 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:29 smithi046 bash[16275]: cluster 2024-02-23T00:49:29.096139+0000 mon.smithi046 (mon.0) 925 : cluster [INF] Cluster is now healthy 2024-02-23T00:49:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:29 smithi142 bash[20802]: cluster 2024-02-23T00:49:28.101162+0000 mgr.smithi046.lplrtl (mgr.14184) 1029 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:29 smithi142 bash[20802]: cephadm 2024-02-23T00:49:28.136098+0000 mgr.smithi046.lplrtl (mgr.14184) 1030 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qwezvc on smithi142 2024-02-23T00:49:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:29 smithi142 bash[20802]: cluster 2024-02-23T00:49:29.096068+0000 mon.smithi046 (mon.0) 924 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:49:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:29 smithi142 bash[20802]: cluster 2024-02-23T00:49:29.096139+0000 mon.smithi046 (mon.0) 925 : cluster [INF] Cluster is now healthy 2024-02-23T00:49:31.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:31 smithi046 bash[16275]: cluster 2024-02-23T00:49:30.102739+0000 mgr.smithi046.lplrtl (mgr.14184) 1031 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-02-23T00:49:31.827 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:31 smithi142 bash[20802]: cluster 2024-02-23T00:49:30.102739+0000 mgr.smithi046.lplrtl (mgr.14184) 1031 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 193 B/s rd, 0 op/s 2024-02-23T00:49:31.847 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:31.847 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:47:12.995059Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.vgyoaj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:23.372599Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.auxcil on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-auxcil\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.auxcil\nDeploy daemon haproxy.nfs.foo.smithi142.auxcil ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.444207Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.brdgqz on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-brdgqz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.brdgqz\nDeploy daemon haproxy.nfs.foo.smithi046.brdgqz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:48:27.448467Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.nfjjrm on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:32.470 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:32.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:32 smithi046 bash[16275]: audit 2024-02-23T00:49:31.898086+0000 mon.smithi046 (mon.0) 926 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qwezvc"}]: dispatch 2024-02-23T00:49:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:32 smithi142 bash[20802]: audit 2024-02-23T00:49:31.898086+0000 mon.smithi046 (mon.0) 926 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qwezvc"}]: dispatch 2024-02-23T00:49:33.471 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: audit 2024-02-23T00:49:31.828919+0000 mgr.smithi046.lplrtl (mgr.14184) 1032 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: cephadm 2024-02-23T00:49:31.896905+0000 mgr.smithi046.lplrtl (mgr.14184) 1033 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: cephadm 2024-02-23T00:49:31.897465+0000 mgr.smithi046.lplrtl (mgr.14184) 1034 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: cephadm 2024-02-23T00:49:31.899898+0000 mgr.smithi046.lplrtl (mgr.14184) 1035 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:33.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: cephadm 2024-02-23T00:49:31.905573+0000 mgr.smithi046.lplrtl (mgr.14184) 1036 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.gptbxe on smithi046 2024-02-23T00:49:33.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:33 smithi046 bash[16275]: cluster 2024-02-23T00:49:32.103737+0000 mgr.smithi046.lplrtl (mgr.14184) 1037 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: audit 2024-02-23T00:49:31.828919+0000 mgr.smithi046.lplrtl (mgr.14184) 1032 : audit [DBG] from='client.15350 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: cephadm 2024-02-23T00:49:31.896905+0000 mgr.smithi046.lplrtl (mgr.14184) 1033 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: cephadm 2024-02-23T00:49:31.897465+0000 mgr.smithi046.lplrtl (mgr.14184) 1034 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: cephadm 2024-02-23T00:49:31.899898+0000 mgr.smithi046.lplrtl (mgr.14184) 1035 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:34.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qwezvc ... 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: cephadm 2024-02-23T00:49:31.905573+0000 mgr.smithi046.lplrtl (mgr.14184) 1036 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.gptbxe on smithi046 2024-02-23T00:49:34.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:33 smithi142 bash[20802]: cluster 2024-02-23T00:49:32.103737+0000 mgr.smithi046.lplrtl (mgr.14184) 1037 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:35.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:35 smithi046 bash[16275]: cluster 2024-02-23T00:49:34.104772+0000 mgr.smithi046.lplrtl (mgr.14184) 1038 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:35 smithi046 bash[16275]: audit 2024-02-23T00:49:35.332682+0000 mon.smithi046 (mon.0) 927 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:36.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:35 smithi142 bash[20802]: cluster 2024-02-23T00:49:34.104772+0000 mgr.smithi046.lplrtl (mgr.14184) 1038 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:36.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:35 smithi142 bash[20802]: audit 2024-02-23T00:49:35.332682+0000 mon.smithi046 (mon.0) 927 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:36.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:36 smithi046 bash[16275]: audit 2024-02-23T00:49:36.188624+0000 mon.smithi046 (mon.0) 928 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.gptbxe"}]: dispatch 2024-02-23T00:49:36.874 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:36.874 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:37.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:36 smithi142 bash[20802]: audit 2024-02-23T00:49:36.188624+0000 mon.smithi046 (mon.0) 928 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.gptbxe"}]: dispatch 2024-02-23T00:49:37.531 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cluster 2024-02-23T00:49:36.106362+0000 mgr.smithi046.lplrtl (mgr.14184) 1039 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cephadm 2024-02-23T00:49:36.187604+0000 mgr.smithi046.lplrtl (mgr.14184) 1040 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:37.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:37.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cephadm 2024-02-23T00:49:36.188080+0000 mgr.smithi046.lplrtl (mgr.14184) 1041 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cephadm 2024-02-23T00:49:36.189901+0000 mgr.smithi046.lplrtl (mgr.14184) 1042 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:37.996 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cephadm 2024-02-23T00:49:36.194011+0000 mgr.smithi046.lplrtl (mgr.14184) 1043 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cephadm 2024-02-23T00:49:36.198068+0000 mgr.smithi046.lplrtl (mgr.14184) 1044 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:49:37.997 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cluster 2024-02-23T00:49:36.198982+0000 mgr.smithi046.lplrtl (mgr.14184) 1045 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-23T00:49:37.998 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:37 smithi046 bash[16275]: cluster 2024-02-23T00:49:36.586646+0000 mon.smithi046 (mon.0) 929 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:49:38.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cluster 2024-02-23T00:49:36.106362+0000 mgr.smithi046.lplrtl (mgr.14184) 1039 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s 2024-02-23T00:49:38.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cephadm 2024-02-23T00:49:36.187604+0000 mgr.smithi046.lplrtl (mgr.14184) 1040 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:49:38.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:38.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cephadm 2024-02-23T00:49:36.188080+0000 mgr.smithi046.lplrtl (mgr.14184) 1041 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cephadm 2024-02-23T00:49:36.189901+0000 mgr.smithi046.lplrtl (mgr.14184) 1042 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe 2024-02-23T00:49:38.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.gptbxe ... 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cephadm 2024-02-23T00:49:36.194011+0000 mgr.smithi046.lplrtl (mgr.14184) 1043 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cephadm 2024-02-23T00:49:36.198068+0000 mgr.smithi046.lplrtl (mgr.14184) 1044 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cluster 2024-02-23T00:49:36.198982+0000 mgr.smithi046.lplrtl (mgr.14184) 1045 : cluster [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 117 B/s rd, 0 op/s 2024-02-23T00:49:38.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:37 smithi142 bash[20802]: cluster 2024-02-23T00:49:36.586646+0000 mon.smithi046 (mon.0) 929 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:49:38.532 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:38.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:38 smithi046 bash[16275]: audit 2024-02-23T00:49:36.854849+0000 mgr.smithi046.lplrtl (mgr.14184) 1046 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:39.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:38 smithi142 bash[20802]: audit 2024-02-23T00:49:36.854849+0000 mgr.smithi046.lplrtl (mgr.14184) 1046 : audit [DBG] from='client.15354 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:39.961 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:39 smithi046 bash[16275]: cluster 2024-02-23T00:49:38.200503+0000 mgr.smithi046.lplrtl (mgr.14184) 1047 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:39.961 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:39 smithi046 bash[16275]: audit 2024-02-23T00:49:39.092202+0000 mon.smithi046 (mon.0) 930 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:40.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:39 smithi142 bash[20802]: cluster 2024-02-23T00:49:38.200503+0000 mgr.smithi046.lplrtl (mgr.14184) 1047 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:40.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:39 smithi142 bash[20802]: audit 2024-02-23T00:49:39.092202+0000 mon.smithi046 (mon.0) 930 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:41.726 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:41.727 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:41.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:41 smithi046 bash[16275]: cluster 2024-02-23T00:49:40.202547+0000 mgr.smithi046.lplrtl (mgr.14184) 1048 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:41 smithi142 bash[20802]: cluster 2024-02-23T00:49:40.202547+0000 mgr.smithi046.lplrtl (mgr.14184) 1048 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:42.363 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:43.365 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:43.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:43 smithi046 bash[16275]: audit 2024-02-23T00:49:41.713734+0000 mgr.smithi046.lplrtl (mgr.14184) 1049 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:43.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:43 smithi046 bash[16275]: cluster 2024-02-23T00:49:42.203999+0000 mgr.smithi046.lplrtl (mgr.14184) 1050 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:43 smithi142 bash[20802]: audit 2024-02-23T00:49:41.713734+0000 mgr.smithi046.lplrtl (mgr.14184) 1049 : audit [DBG] from='client.15358 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:43 smithi142 bash[20802]: cluster 2024-02-23T00:49:42.203999+0000 mgr.smithi046.lplrtl (mgr.14184) 1050 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:45.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:45 smithi046 bash[16275]: cluster 2024-02-23T00:49:44.205401+0000 mgr.smithi046.lplrtl (mgr.14184) 1051 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:46.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:45 smithi142 bash[20802]: cluster 2024-02-23T00:49:44.205401+0000 mgr.smithi046.lplrtl (mgr.14184) 1051 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:46.497 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:46.497 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:47.075 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:47.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:47 smithi046 bash[16275]: cluster 2024-02-23T00:49:46.207251+0000 mgr.smithi046.lplrtl (mgr.14184) 1052 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:47.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:47 smithi046 bash[16275]: audit 2024-02-23T00:49:46.478907+0000 mgr.smithi046.lplrtl (mgr.14184) 1053 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:47 smithi142 bash[20802]: cluster 2024-02-23T00:49:46.207251+0000 mgr.smithi046.lplrtl (mgr.14184) 1052 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:49:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:47 smithi142 bash[20802]: audit 2024-02-23T00:49:46.478907+0000 mgr.smithi046.lplrtl (mgr.14184) 1053 : audit [DBG] from='client.15362 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:48.076 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:49.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:49 smithi046 bash[16275]: cluster 2024-02-23T00:49:48.208762+0000 mgr.smithi046.lplrtl (mgr.14184) 1054 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:49 smithi142 bash[20802]: cluster 2024-02-23T00:49:48.208762+0000 mgr.smithi046.lplrtl (mgr.14184) 1054 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:51.168 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:51.168 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:51.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:51 smithi046 bash[16275]: cluster 2024-02-23T00:49:50.210788+0000 mgr.smithi046.lplrtl (mgr.14184) 1055 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:51.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:51 smithi046 bash[16275]: audit 2024-02-23T00:49:50.333219+0000 mon.smithi046 (mon.0) 931 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:51 smithi142 bash[20802]: cluster 2024-02-23T00:49:50.210788+0000 mgr.smithi046.lplrtl (mgr.14184) 1055 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:49:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:51 smithi142 bash[20802]: audit 2024-02-23T00:49:50.333219+0000 mon.smithi046 (mon.0) 931 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:49:51.821 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:52.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:52 smithi046 bash[16275]: audit 2024-02-23T00:49:51.147682+0000 mgr.smithi046.lplrtl (mgr.14184) 1056 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:52.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:52 smithi142 bash[20802]: audit 2024-02-23T00:49:51.147682+0000 mgr.smithi046.lplrtl (mgr.14184) 1056 : audit [DBG] from='client.15366 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:52.822 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:53.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:53 smithi046 bash[16275]: cluster 2024-02-23T00:49:52.212250+0000 mgr.smithi046.lplrtl (mgr.14184) 1057 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:53.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:53 smithi142 bash[20802]: cluster 2024-02-23T00:49:52.212250+0000 mgr.smithi046.lplrtl (mgr.14184) 1057 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:55.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:55 smithi046 bash[16275]: cluster 2024-02-23T00:49:54.213478+0000 mgr.smithi046.lplrtl (mgr.14184) 1058 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:55 smithi142 bash[20802]: cluster 2024-02-23T00:49:54.213478+0000 mgr.smithi046.lplrtl (mgr.14184) 1058 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:55.829 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:49:55.830 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:49:56.470 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:49:57.472 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:49:57.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:57 smithi046 bash[16275]: audit 2024-02-23T00:49:55.813341+0000 mgr.smithi046.lplrtl (mgr.14184) 1059 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:57.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:57 smithi046 bash[16275]: cluster 2024-02-23T00:49:56.215577+0000 mgr.smithi046.lplrtl (mgr.14184) 1060 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:57.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:57 smithi142 bash[20802]: audit 2024-02-23T00:49:55.813341+0000 mgr.smithi046.lplrtl (mgr.14184) 1059 : audit [DBG] from='client.15370 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:49:57.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:57 smithi142 bash[20802]: cluster 2024-02-23T00:49:56.215577+0000 mgr.smithi046.lplrtl (mgr.14184) 1060 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:59.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:49:59 smithi046 bash[16275]: cluster 2024-02-23T00:49:58.217107+0000 mgr.smithi046.lplrtl (mgr.14184) 1061 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:49:59.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:49:59 smithi142 bash[20802]: cluster 2024-02-23T00:49:58.217107+0000 mgr.smithi046.lplrtl (mgr.14184) 1061 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:00.490 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:00.490 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:00.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:00 smithi046 bash[16275]: cluster 2024-02-23T00:50:00.000104+0000 mon.smithi046 (mon.0) 932 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-23T00:50:00.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:00 smithi142 bash[20802]: cluster 2024-02-23T00:50:00.000104+0000 mon.smithi046 (mon.0) 932 : cluster [WRN] overall HEALTH_WARN Failed to place 4 daemon(s) 2024-02-23T00:50:01.111 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:01.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:01 smithi046 bash[16275]: cluster 2024-02-23T00:50:00.219090+0000 mgr.smithi046.lplrtl (mgr.14184) 1062 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:01.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:01 smithi046 bash[16275]: audit 2024-02-23T00:50:00.470852+0000 mgr.smithi046.lplrtl (mgr.14184) 1063 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:01 smithi142 bash[20802]: cluster 2024-02-23T00:50:00.219090+0000 mgr.smithi046.lplrtl (mgr.14184) 1062 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:01 smithi142 bash[20802]: audit 2024-02-23T00:50:00.470852+0000 mgr.smithi046.lplrtl (mgr.14184) 1063 : audit [DBG] from='client.15374 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:02.112 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:03.555 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:03 smithi046 bash[16275]: cluster 2024-02-23T00:50:02.220490+0000 mgr.smithi046.lplrtl (mgr.14184) 1064 : cluster [DBG] pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:03.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:03 smithi142 bash[20802]: cluster 2024-02-23T00:50:02.220490+0000 mgr.smithi046.lplrtl (mgr.14184) 1064 : cluster [DBG] pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:05.237 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:05.237 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:05.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:05 smithi046 bash[16275]: cluster 2024-02-23T00:50:04.221913+0000 mgr.smithi046.lplrtl (mgr.14184) 1065 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:05 smithi142 bash[20802]: cluster 2024-02-23T00:50:04.221913+0000 mgr.smithi046.lplrtl (mgr.14184) 1065 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:05.890 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:06.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:06 smithi046 bash[16275]: audit 2024-02-23T00:50:05.218231+0000 mgr.smithi046.lplrtl (mgr.14184) 1066 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:06 smithi142 bash[20802]: audit 2024-02-23T00:50:05.218231+0000 mgr.smithi046.lplrtl (mgr.14184) 1066 : audit [DBG] from='client.15378 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:06.891 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:07.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:07 smithi046 bash[16275]: cluster 2024-02-23T00:50:06.223785+0000 mgr.smithi046.lplrtl (mgr.14184) 1067 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:07 smithi142 bash[20802]: cluster 2024-02-23T00:50:06.223785+0000 mgr.smithi046.lplrtl (mgr.14184) 1067 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:09.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:09 smithi046 bash[16275]: cluster 2024-02-23T00:50:08.224808+0000 mgr.smithi046.lplrtl (mgr.14184) 1068 : cluster [DBG] pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:09 smithi142 bash[20802]: cluster 2024-02-23T00:50:08.224808+0000 mgr.smithi046.lplrtl (mgr.14184) 1068 : cluster [DBG] pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:09.924 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:09.925 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:10.587 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:11.589 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:11.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:11 smithi046 bash[16275]: audit 2024-02-23T00:50:09.903575+0000 mgr.smithi046.lplrtl (mgr.14184) 1069 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:11.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:11 smithi046 bash[16275]: cluster 2024-02-23T00:50:10.226876+0000 mgr.smithi046.lplrtl (mgr.14184) 1070 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:11.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:11 smithi142 bash[20802]: audit 2024-02-23T00:50:09.903575+0000 mgr.smithi046.lplrtl (mgr.14184) 1069 : audit [DBG] from='client.15382 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:11.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:11 smithi142 bash[20802]: cluster 2024-02-23T00:50:10.226876+0000 mgr.smithi046.lplrtl (mgr.14184) 1070 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:13.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:13 smithi046 bash[16275]: cluster 2024-02-23T00:50:12.228332+0000 mgr.smithi046.lplrtl (mgr.14184) 1071 : cluster [DBG] pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:13.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:13 smithi142 bash[20802]: cluster 2024-02-23T00:50:12.228332+0000 mgr.smithi046.lplrtl (mgr.14184) 1071 : cluster [DBG] pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:14.791 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:14.791 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:15.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:15.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:15 smithi046 bash[16275]: cluster 2024-02-23T00:50:14.229869+0000 mgr.smithi046.lplrtl (mgr.14184) 1072 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:15.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:15 smithi142 bash[20802]: cluster 2024-02-23T00:50:14.229869+0000 mgr.smithi046.lplrtl (mgr.14184) 1072 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:16.396 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:16.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:16 smithi046 bash[16275]: audit 2024-02-23T00:50:14.770512+0000 mgr.smithi046.lplrtl (mgr.14184) 1073 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:16.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:16 smithi142 bash[20802]: audit 2024-02-23T00:50:14.770512+0000 mgr.smithi046.lplrtl (mgr.14184) 1073 : audit [DBG] from='client.15386 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:17.695 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:17 smithi046 bash[16275]: cluster 2024-02-23T00:50:16.231790+0000 mgr.smithi046.lplrtl (mgr.14184) 1074 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:17.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:17 smithi142 bash[20802]: cluster 2024-02-23T00:50:16.231790+0000 mgr.smithi046.lplrtl (mgr.14184) 1074 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:19.439 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:19.439 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:19.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:19 smithi046 bash[16275]: cluster 2024-02-23T00:50:18.232961+0000 mgr.smithi046.lplrtl (mgr.14184) 1075 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:19.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:19 smithi142 bash[20802]: cluster 2024-02-23T00:50:18.232961+0000 mgr.smithi046.lplrtl (mgr.14184) 1075 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:20.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:20.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:20 smithi046 bash[16275]: audit 2024-02-23T00:50:19.418364+0000 mgr.smithi046.lplrtl (mgr.14184) 1076 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:20.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:20 smithi142 bash[20802]: audit 2024-02-23T00:50:19.418364+0000 mgr.smithi046.lplrtl (mgr.14184) 1076 : audit [DBG] from='client.15390 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:21.026 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:21.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:21 smithi046 bash[16275]: cluster 2024-02-23T00:50:20.235065+0000 mgr.smithi046.lplrtl (mgr.14184) 1077 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:21.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:21 smithi142 bash[20802]: cluster 2024-02-23T00:50:20.235065+0000 mgr.smithi046.lplrtl (mgr.14184) 1077 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:23 smithi046 bash[16275]: cluster 2024-02-23T00:50:22.236535+0000 mgr.smithi046.lplrtl (mgr.14184) 1078 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:23.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:23 smithi142 bash[20802]: cluster 2024-02-23T00:50:22.236535+0000 mgr.smithi046.lplrtl (mgr.14184) 1078 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:24.045 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:24.045 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:24.684 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:25.685 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:25.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:25 smithi046 bash[16275]: audit 2024-02-23T00:50:24.024093+0000 mgr.smithi046.lplrtl (mgr.14184) 1079 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:25.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:25 smithi046 bash[16275]: cluster 2024-02-23T00:50:24.237643+0000 mgr.smithi046.lplrtl (mgr.14184) 1080 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:25.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:25 smithi142 bash[20802]: audit 2024-02-23T00:50:24.024093+0000 mgr.smithi046.lplrtl (mgr.14184) 1079 : audit [DBG] from='client.15394 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:25.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:25 smithi142 bash[20802]: cluster 2024-02-23T00:50:24.237643+0000 mgr.smithi046.lplrtl (mgr.14184) 1080 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:27 smithi046 bash[16275]: cluster 2024-02-23T00:50:26.239251+0000 mgr.smithi046.lplrtl (mgr.14184) 1081 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:27.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:27 smithi142 bash[20802]: cluster 2024-02-23T00:50:26.239251+0000 mgr.smithi046.lplrtl (mgr.14184) 1081 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:28.681 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:28.681 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:29.280 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:29.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:29 smithi046 bash[16275]: cluster 2024-02-23T00:50:28.240943+0000 mgr.smithi046.lplrtl (mgr.14184) 1082 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:29.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:29 smithi046 bash[16275]: audit 2024-02-23T00:50:28.663925+0000 mgr.smithi046.lplrtl (mgr.14184) 1083 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:29.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:29 smithi142 bash[20802]: cluster 2024-02-23T00:50:28.240943+0000 mgr.smithi046.lplrtl (mgr.14184) 1082 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:29.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:29 smithi142 bash[20802]: audit 2024-02-23T00:50:28.663925+0000 mgr.smithi046.lplrtl (mgr.14184) 1083 : audit [DBG] from='client.15398 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:30.282 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:31.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:30 smithi046 bash[16275]: cluster 2024-02-23T00:50:30.243046+0000 mgr.smithi046.lplrtl (mgr.14184) 1084 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:30 smithi142 bash[20802]: cluster 2024-02-23T00:50:30.243046+0000 mgr.smithi046.lplrtl (mgr.14184) 1084 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:50:33.354 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:33.355 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:33.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:33 smithi046 bash[16275]: cluster 2024-02-23T00:50:32.244563+0000 mgr.smithi046.lplrtl (mgr.14184) 1085 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:33 smithi142 bash[20802]: cluster 2024-02-23T00:50:32.244563+0000 mgr.smithi046.lplrtl (mgr.14184) 1085 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:33.957 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:34 smithi046 bash[16275]: audit 2024-02-23T00:50:33.337280+0000 mgr.smithi046.lplrtl (mgr.14184) 1086 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:34 smithi142 bash[20802]: audit 2024-02-23T00:50:33.337280+0000 mgr.smithi046.lplrtl (mgr.14184) 1086 : audit [DBG] from='client.15402 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:34.959 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:35 smithi046 bash[16275]: cluster 2024-02-23T00:50:34.245997+0000 mgr.smithi046.lplrtl (mgr.14184) 1087 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:35 smithi142 bash[20802]: cluster 2024-02-23T00:50:34.245997+0000 mgr.smithi046.lplrtl (mgr.14184) 1087 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:36.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:36 smithi046 bash[16275]: audit 2024-02-23T00:50:36.201552+0000 mon.smithi046 (mon.0) 933 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:50:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:36 smithi142 bash[20802]: audit 2024-02-23T00:50:36.201552+0000 mon.smithi046 (mon.0) 933 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: cluster 2024-02-23T00:50:36.247296+0000 mgr.smithi046.lplrtl (mgr.14184) 1088 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: audit 2024-02-23T00:50:36.527578+0000 mon.smithi046 (mon.0) 934 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: audit 2024-02-23T00:50:36.528479+0000 mon.smithi046 (mon.0) 935 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: audit 2024-02-23T00:50:36.533715+0000 mon.smithi046 (mon.0) 936 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: cluster 2024-02-23T00:50:36.534265+0000 mgr.smithi046.lplrtl (mgr.14184) 1089 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: audit 2024-02-23T00:50:36.539572+0000 mon.smithi046 (mon.0) 937 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: audit 2024-02-23T00:50:36.553339+0000 mon.smithi046 (mon.0) 938 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:37.607 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:37 smithi046 bash[16275]: cephadm 2024-02-23T00:50:36.557058+0000 mgr.smithi046.lplrtl (mgr.14184) 1090 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vidbko on smithi142 2024-02-23T00:50:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: cluster 2024-02-23T00:50:36.247296+0000 mgr.smithi046.lplrtl (mgr.14184) 1088 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: audit 2024-02-23T00:50:36.527578+0000 mon.smithi046 (mon.0) 934 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:50:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: audit 2024-02-23T00:50:36.528479+0000 mon.smithi046 (mon.0) 935 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:50:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: audit 2024-02-23T00:50:36.533715+0000 mon.smithi046 (mon.0) 936 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: cluster 2024-02-23T00:50:36.534265+0000 mgr.smithi046.lplrtl (mgr.14184) 1089 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: audit 2024-02-23T00:50:36.539572+0000 mon.smithi046 (mon.0) 937 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:50:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: audit 2024-02-23T00:50:36.553339+0000 mon.smithi046 (mon.0) 938 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:37 smithi142 bash[20802]: cephadm 2024-02-23T00:50:36.557058+0000 mgr.smithi046.lplrtl (mgr.14184) 1090 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.vidbko on smithi142 2024-02-23T00:50:37.968 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:37.968 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:48:27.452576Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.fprjje on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:38.559 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:38.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:38 smithi046 bash[16275]: cluster 2024-02-23T00:50:37.531826+0000 mon.smithi046 (mon.0) 939 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:50:38.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:38 smithi046 bash[16275]: cluster 2024-02-23T00:50:37.531892+0000 mon.smithi046 (mon.0) 940 : cluster [INF] Cluster is now healthy 2024-02-23T00:50:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:38 smithi142 bash[20802]: cluster 2024-02-23T00:50:37.531826+0000 mon.smithi046 (mon.0) 939 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:50:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:38 smithi142 bash[20802]: cluster 2024-02-23T00:50:37.531892+0000 mon.smithi046 (mon.0) 940 : cluster [INF] Cluster is now healthy 2024-02-23T00:50:39.560 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:39.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:39 smithi046 bash[16275]: audit 2024-02-23T00:50:37.948838+0000 mgr.smithi046.lplrtl (mgr.14184) 1091 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:39.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:39 smithi046 bash[16275]: cluster 2024-02-23T00:50:38.535616+0000 mgr.smithi046.lplrtl (mgr.14184) 1092 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:39 smithi142 bash[20802]: audit 2024-02-23T00:50:37.948838+0000 mgr.smithi046.lplrtl (mgr.14184) 1091 : audit [DBG] from='client.15406 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:39 smithi142 bash[20802]: cluster 2024-02-23T00:50:38.535616+0000 mgr.smithi046.lplrtl (mgr.14184) 1092 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:40.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:40 smithi046 bash[16275]: audit 2024-02-23T00:50:40.477602+0000 mon.smithi046 (mon.0) 941 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vidbko"}]: dispatch 2024-02-23T00:50:40.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:40 smithi142 bash[20802]: audit 2024-02-23T00:50:40.477602+0000 mon.smithi046 (mon.0) 941 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.vidbko"}]: dispatch 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: cephadm 2024-02-23T00:50:40.476443+0000 mgr.smithi046.lplrtl (mgr.14184) 1093 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:41.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: cephadm 2024-02-23T00:50:40.476983+0000 mgr.smithi046.lplrtl (mgr.14184) 1094 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: cephadm 2024-02-23T00:50:40.479260+0000 mgr.smithi046.lplrtl (mgr.14184) 1095 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:41.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: cephadm 2024-02-23T00:50:40.483861+0000 mgr.smithi046.lplrtl (mgr.14184) 1096 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.oxtpaw on smithi046 2024-02-23T00:50:41.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:41 smithi046 bash[16275]: cluster 2024-02-23T00:50:40.536519+0000 mgr.smithi046.lplrtl (mgr.14184) 1097 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:42.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: cephadm 2024-02-23T00:50:40.476443+0000 mgr.smithi046.lplrtl (mgr.14184) 1093 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:50:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: cephadm 2024-02-23T00:50:40.476983+0000 mgr.smithi046.lplrtl (mgr.14184) 1094 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: cephadm 2024-02-23T00:50:40.479260+0000 mgr.smithi046.lplrtl (mgr.14184) 1095 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.vidbko ... 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: cephadm 2024-02-23T00:50:40.483861+0000 mgr.smithi046.lplrtl (mgr.14184) 1096 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.oxtpaw on smithi046 2024-02-23T00:50:42.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:41 smithi142 bash[20802]: cluster 2024-02-23T00:50:40.536519+0000 mgr.smithi046.lplrtl (mgr.14184) 1097 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:42.593 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:42.593 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:31.899643Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qwezvc on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qwezvc\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qwezvc\nDeploy daemon haproxy.nfs.foo.smithi142.qwezvc ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.189654Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.gptbxe on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-gptbxe\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.gptbxe\nDeploy daemon haproxy.nfs.foo.smithi046.gptbxe ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:49:36.193801Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kkrxyc on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:43.243 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:43.875 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:43 smithi046 bash[16275]: cluster 2024-02-23T00:50:42.537821+0000 mgr.smithi046.lplrtl (mgr.14184) 1098 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:43.875 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:43 smithi046 bash[16275]: audit 2024-02-23T00:50:42.574280+0000 mgr.smithi046.lplrtl (mgr.14184) 1099 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:43 smithi142 bash[20802]: cluster 2024-02-23T00:50:42.537821+0000 mgr.smithi046.lplrtl (mgr.14184) 1098 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:50:44.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:43 smithi142 bash[20802]: audit 2024-02-23T00:50:42.574280+0000 mgr.smithi046.lplrtl (mgr.14184) 1099 : audit [DBG] from='client.15410 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:44.245 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:44.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:44 smithi046 bash[16275]: audit 2024-02-23T00:50:44.229381+0000 mon.smithi046 (mon.0) 942 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.oxtpaw"}]: dispatch 2024-02-23T00:50:45.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:44 smithi142 bash[20802]: audit 2024-02-23T00:50:44.229381+0000 mon.smithi046 (mon.0) 942 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.oxtpaw"}]: dispatch 2024-02-23T00:50:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cephadm 2024-02-23T00:50:44.228073+0000 mgr.smithi046.lplrtl (mgr.14184) 1100 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:50:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cephadm 2024-02-23T00:50:44.228641+0000 mgr.smithi046.lplrtl (mgr.14184) 1101 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cephadm 2024-02-23T00:50:44.231105+0000 mgr.smithi046.lplrtl (mgr.14184) 1102 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cephadm 2024-02-23T00:50:44.235296+0000 mgr.smithi046.lplrtl (mgr.14184) 1103 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cephadm 2024-02-23T00:50:44.239495+0000 mgr.smithi046.lplrtl (mgr.14184) 1104 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cluster 2024-02-23T00:50:44.241013+0000 mgr.smithi046.lplrtl (mgr.14184) 1105 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:50:45.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:45 smithi046 bash[16275]: cluster 2024-02-23T00:50:44.547114+0000 mon.smithi046 (mon.0) 943 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cephadm 2024-02-23T00:50:44.228073+0000 mgr.smithi046.lplrtl (mgr.14184) 1100 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:46.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cephadm 2024-02-23T00:50:44.228641+0000 mgr.smithi046.lplrtl (mgr.14184) 1101 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cephadm 2024-02-23T00:50:44.231105+0000 mgr.smithi046.lplrtl (mgr.14184) 1102 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.oxtpaw ... 2024-02-23T00:50:46.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cephadm 2024-02-23T00:50:44.235296+0000 mgr.smithi046.lplrtl (mgr.14184) 1103 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cephadm 2024-02-23T00:50:44.239495+0000 mgr.smithi046.lplrtl (mgr.14184) 1104 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cluster 2024-02-23T00:50:44.241013+0000 mgr.smithi046.lplrtl (mgr.14184) 1105 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:50:46.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:45 smithi142 bash[20802]: cluster 2024-02-23T00:50:44.547114+0000 mon.smithi046 (mon.0) 943 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:50:47.459 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:47.460 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:47.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:47 smithi046 bash[16275]: cluster 2024-02-23T00:50:46.243000+0000 mgr.smithi046.lplrtl (mgr.14184) 1106 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:50:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:47 smithi142 bash[20802]: cluster 2024-02-23T00:50:46.243000+0000 mgr.smithi046.lplrtl (mgr.14184) 1106 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:50:48.093 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:48.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:48 smithi046 bash[16275]: audit 2024-02-23T00:50:47.446492+0000 mgr.smithi046.lplrtl (mgr.14184) 1107 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:49.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:48 smithi142 bash[20802]: audit 2024-02-23T00:50:47.446492+0000 mgr.smithi046.lplrtl (mgr.14184) 1107 : audit [DBG] from='client.15414 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:49.094 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:49.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:49 smithi046 bash[16275]: cluster 2024-02-23T00:50:48.245255+0000 mgr.smithi046.lplrtl (mgr.14184) 1108 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:49.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:49 smithi046 bash[16275]: audit 2024-02-23T00:50:49.148072+0000 mon.smithi046 (mon.0) 944 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:49 smithi142 bash[20802]: cluster 2024-02-23T00:50:48.245255+0000 mgr.smithi046.lplrtl (mgr.14184) 1108 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:49 smithi142 bash[20802]: audit 2024-02-23T00:50:49.148072+0000 mon.smithi046 (mon.0) 944 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:50:51.861 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:51 smithi046 bash[16275]: cluster 2024-02-23T00:50:50.247386+0000 mgr.smithi046.lplrtl (mgr.14184) 1109 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2024-02-23T00:50:52.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:51 smithi142 bash[20802]: cluster 2024-02-23T00:50:50.247386+0000 mgr.smithi046.lplrtl (mgr.14184) 1109 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 174 B/s rd, 0 op/s 2024-02-23T00:50:52.292 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:52.293 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:52.939 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:53.940 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:53.952 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:53 smithi046 bash[16275]: cluster 2024-02-23T00:50:52.248810+0000 mgr.smithi046.lplrtl (mgr.14184) 1110 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:53.952 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:53 smithi046 bash[16275]: audit 2024-02-23T00:50:52.276301+0000 mgr.smithi046.lplrtl (mgr.14184) 1111 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:53 smithi142 bash[20802]: cluster 2024-02-23T00:50:52.248810+0000 mgr.smithi046.lplrtl (mgr.14184) 1110 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:53 smithi142 bash[20802]: audit 2024-02-23T00:50:52.276301+0000 mgr.smithi046.lplrtl (mgr.14184) 1111 : audit [DBG] from='client.15418 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:55.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:55 smithi046 bash[16275]: cluster 2024-02-23T00:50:54.250206+0000 mgr.smithi046.lplrtl (mgr.14184) 1112 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:55 smithi142 bash[20802]: cluster 2024-02-23T00:50:54.250206+0000 mgr.smithi046.lplrtl (mgr.14184) 1112 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 87 B/s rd, 0 op/s 2024-02-23T00:50:56.957 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:50:56.958 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:50:57.557 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:50:57.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:57 smithi046 bash[16275]: cluster 2024-02-23T00:50:56.252062+0000 mgr.smithi046.lplrtl (mgr.14184) 1113 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:58.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:57 smithi142 bash[20802]: cluster 2024-02-23T00:50:56.252062+0000 mgr.smithi046.lplrtl (mgr.14184) 1113 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:50:58.559 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:50:58.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:58 smithi046 bash[16275]: audit 2024-02-23T00:50:56.935880+0000 mgr.smithi046.lplrtl (mgr.14184) 1114 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:58 smithi142 bash[20802]: audit 2024-02-23T00:50:56.935880+0000 mgr.smithi046.lplrtl (mgr.14184) 1114 : audit [DBG] from='client.15422 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:50:59.940 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:50:59 smithi046 bash[16275]: cluster 2024-02-23T00:50:58.253673+0000 mgr.smithi046.lplrtl (mgr.14184) 1115 : cluster [DBG] pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:00.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:50:59 smithi142 bash[20802]: cluster 2024-02-23T00:50:58.253673+0000 mgr.smithi046.lplrtl (mgr.14184) 1115 : cluster [DBG] pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:01.732 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:01.732 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:01.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:01 smithi046 bash[16275]: cluster 2024-02-23T00:51:00.255757+0000 mgr.smithi046.lplrtl (mgr.14184) 1116 : cluster [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:02.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:01 smithi142 bash[20802]: cluster 2024-02-23T00:51:00.255757+0000 mgr.smithi046.lplrtl (mgr.14184) 1116 : cluster [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:02.335 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:02 smithi046 bash[16275]: audit 2024-02-23T00:51:01.713365+0000 mgr.smithi046.lplrtl (mgr.14184) 1117 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:02 smithi142 bash[20802]: audit 2024-02-23T00:51:01.713365+0000 mgr.smithi046.lplrtl (mgr.14184) 1117 : audit [DBG] from='client.15426 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:03.336 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:03.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:03 smithi046 bash[16275]: cluster 2024-02-23T00:51:02.257195+0000 mgr.smithi046.lplrtl (mgr.14184) 1118 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:04.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:03 smithi142 bash[20802]: cluster 2024-02-23T00:51:02.257195+0000 mgr.smithi046.lplrtl (mgr.14184) 1118 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:05.963 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:05 smithi046 bash[16275]: cluster 2024-02-23T00:51:04.258534+0000 mgr.smithi046.lplrtl (mgr.14184) 1119 : cluster [DBG] pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:05 smithi142 bash[20802]: cluster 2024-02-23T00:51:04.258534+0000 mgr.smithi046.lplrtl (mgr.14184) 1119 : cluster [DBG] pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:06.398 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:06.398 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:06.996 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:07.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:07 smithi046 bash[16275]: cluster 2024-02-23T00:51:06.260321+0000 mgr.smithi046.lplrtl (mgr.14184) 1120 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:07.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:07 smithi046 bash[16275]: audit 2024-02-23T00:51:06.379397+0000 mgr.smithi046.lplrtl (mgr.14184) 1121 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:07.998 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:08.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:07 smithi142 bash[20802]: cluster 2024-02-23T00:51:06.260321+0000 mgr.smithi046.lplrtl (mgr.14184) 1120 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:08.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:07 smithi142 bash[20802]: audit 2024-02-23T00:51:06.379397+0000 mgr.smithi046.lplrtl (mgr.14184) 1121 : audit [DBG] from='client.15430 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:09.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:09 smithi046 bash[16275]: cluster 2024-02-23T00:51:08.261919+0000 mgr.smithi046.lplrtl (mgr.14184) 1122 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:09 smithi142 bash[20802]: cluster 2024-02-23T00:51:08.261919+0000 mgr.smithi046.lplrtl (mgr.14184) 1122 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:10.975 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:10.976 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:11.591 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:11.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:11 smithi046 bash[16275]: cluster 2024-02-23T00:51:10.264069+0000 mgr.smithi046.lplrtl (mgr.14184) 1123 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:12.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:11 smithi142 bash[20802]: cluster 2024-02-23T00:51:10.264069+0000 mgr.smithi046.lplrtl (mgr.14184) 1123 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:12.592 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:12 smithi046 bash[16275]: audit 2024-02-23T00:51:10.962177+0000 mgr.smithi046.lplrtl (mgr.14184) 1124 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:12 smithi142 bash[20802]: audit 2024-02-23T00:51:10.962177+0000 mgr.smithi046.lplrtl (mgr.14184) 1124 : audit [DBG] from='client.15434 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:13.920 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:13 smithi046 bash[16275]: cluster 2024-02-23T00:51:12.265336+0000 mgr.smithi046.lplrtl (mgr.14184) 1125 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:13 smithi142 bash[20802]: cluster 2024-02-23T00:51:12.265336+0000 mgr.smithi046.lplrtl (mgr.14184) 1125 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:15.575 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:15.575 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:15.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:15 smithi046 bash[16275]: cluster 2024-02-23T00:51:14.267287+0000 mgr.smithi046.lplrtl (mgr.14184) 1126 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:15 smithi142 bash[20802]: cluster 2024-02-23T00:51:14.267287+0000 mgr.smithi046.lplrtl (mgr.14184) 1126 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:16.227 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:16 smithi046 bash[16275]: audit 2024-02-23T00:51:15.561501+0000 mgr.smithi046.lplrtl (mgr.14184) 1127 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:16 smithi142 bash[20802]: audit 2024-02-23T00:51:15.561501+0000 mgr.smithi046.lplrtl (mgr.14184) 1127 : audit [DBG] from='client.15438 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:17.228 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:17.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:17 smithi046 bash[16275]: cluster 2024-02-23T00:51:16.269377+0000 mgr.smithi046.lplrtl (mgr.14184) 1128 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:18.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:17 smithi142 bash[20802]: cluster 2024-02-23T00:51:16.269377+0000 mgr.smithi046.lplrtl (mgr.14184) 1128 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:19 smithi046 bash[16275]: cluster 2024-02-23T00:51:18.271027+0000 mgr.smithi046.lplrtl (mgr.14184) 1129 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:19 smithi142 bash[20802]: cluster 2024-02-23T00:51:18.271027+0000 mgr.smithi046.lplrtl (mgr.14184) 1129 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:20.306 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:20.307 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:20.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:21.898 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:21.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:21 smithi046 bash[16275]: cluster 2024-02-23T00:51:20.272453+0000 mgr.smithi046.lplrtl (mgr.14184) 1130 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:21.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:21 smithi046 bash[16275]: audit 2024-02-23T00:51:20.293164+0000 mgr.smithi046.lplrtl (mgr.14184) 1131 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:21 smithi142 bash[20802]: cluster 2024-02-23T00:51:20.272453+0000 mgr.smithi046.lplrtl (mgr.14184) 1130 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:21 smithi142 bash[20802]: audit 2024-02-23T00:51:20.293164+0000 mgr.smithi046.lplrtl (mgr.14184) 1131 : audit [DBG] from='client.15442 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:23.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:23 smithi046 bash[16275]: cluster 2024-02-23T00:51:22.273862+0000 mgr.smithi046.lplrtl (mgr.14184) 1132 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:24.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:23 smithi142 bash[20802]: cluster 2024-02-23T00:51:22.273862+0000 mgr.smithi046.lplrtl (mgr.14184) 1132 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:24.906 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:24.907 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:25.497 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:25.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:25 smithi046 bash[16275]: cluster 2024-02-23T00:51:24.275374+0000 mgr.smithi046.lplrtl (mgr.14184) 1133 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:26.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:25 smithi142 bash[20802]: cluster 2024-02-23T00:51:24.275374+0000 mgr.smithi046.lplrtl (mgr.14184) 1133 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:26.498 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:26.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:26 smithi046 bash[16275]: audit 2024-02-23T00:51:24.892791+0000 mgr.smithi046.lplrtl (mgr.14184) 1134 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:27.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:26 smithi142 bash[20802]: audit 2024-02-23T00:51:24.892791+0000 mgr.smithi046.lplrtl (mgr.14184) 1134 : audit [DBG] from='client.15446 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:27.858 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:27 smithi046 bash[16275]: cluster 2024-02-23T00:51:26.277249+0000 mgr.smithi046.lplrtl (mgr.14184) 1135 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:27 smithi142 bash[20802]: cluster 2024-02-23T00:51:26.277249+0000 mgr.smithi046.lplrtl (mgr.14184) 1135 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:29.117 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:28 smithi046 bash[16275]: cluster 2024-02-23T00:51:28.278705+0000 mgr.smithi046.lplrtl (mgr.14184) 1136 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:29.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:28 smithi142 bash[20802]: cluster 2024-02-23T00:51:28.278705+0000 mgr.smithi046.lplrtl (mgr.14184) 1136 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:29.554 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:29.555 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:29.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:29 smithi046 bash[16275]: audit 2024-02-23T00:51:29.540991+0000 mgr.smithi046.lplrtl (mgr.14184) 1137 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:30.145 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:29 smithi142 bash[20802]: audit 2024-02-23T00:51:29.540991+0000 mgr.smithi046.lplrtl (mgr.14184) 1137 : audit [DBG] from='client.15450 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:31.146 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:31.157 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:30 smithi046 bash[16275]: cluster 2024-02-23T00:51:30.280108+0000 mgr.smithi046.lplrtl (mgr.14184) 1138 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:30 smithi142 bash[20802]: cluster 2024-02-23T00:51:30.280108+0000 mgr.smithi046.lplrtl (mgr.14184) 1138 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:33.730 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:33 smithi046 bash[16275]: cluster 2024-02-23T00:51:32.281912+0000 mgr.smithi046.lplrtl (mgr.14184) 1139 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:33.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:33 smithi142 bash[20802]: cluster 2024-02-23T00:51:32.281912+0000 mgr.smithi046.lplrtl (mgr.14184) 1139 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:34.157 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:34.157 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:34.773 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:35 smithi046 bash[16275]: audit 2024-02-23T00:51:34.141727+0000 mgr.smithi046.lplrtl (mgr.14184) 1140 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:35.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:35 smithi046 bash[16275]: cluster 2024-02-23T00:51:34.282886+0000 mgr.smithi046.lplrtl (mgr.14184) 1141 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:35 smithi142 bash[20802]: audit 2024-02-23T00:51:34.141727+0000 mgr.smithi046.lplrtl (mgr.14184) 1140 : audit [DBG] from='client.15454 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:35 smithi142 bash[20802]: cluster 2024-02-23T00:51:34.282886+0000 mgr.smithi046.lplrtl (mgr.14184) 1141 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:35.775 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:37 smithi046 bash[16275]: cluster 2024-02-23T00:51:36.284553+0000 mgr.smithi046.lplrtl (mgr.14184) 1142 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:37 smithi142 bash[20802]: cluster 2024-02-23T00:51:36.284553+0000 mgr.smithi046.lplrtl (mgr.14184) 1142 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:38.898 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:38.899 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:39.465 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:39.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:39 smithi046 bash[16275]: cluster 2024-02-23T00:51:38.285801+0000 mgr.smithi046.lplrtl (mgr.14184) 1143 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:39 smithi142 bash[20802]: cluster 2024-02-23T00:51:38.285801+0000 mgr.smithi046.lplrtl (mgr.14184) 1143 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:40.465 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:40.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:40 smithi046 bash[16275]: audit 2024-02-23T00:51:38.883278+0000 mgr.smithi046.lplrtl (mgr.14184) 1144 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:40.767 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:40 smithi142 bash[20802]: audit 2024-02-23T00:51:38.883278+0000 mgr.smithi046.lplrtl (mgr.14184) 1144 : audit [DBG] from='client.15458 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:41.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:41 smithi046 bash[16275]: cluster 2024-02-23T00:51:40.287999+0000 mgr.smithi046.lplrtl (mgr.14184) 1145 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:41 smithi142 bash[20802]: cluster 2024-02-23T00:51:40.287999+0000 mgr.smithi046.lplrtl (mgr.14184) 1145 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:51:43.474 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:43.474 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:43.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:43 smithi046 bash[16275]: cluster 2024-02-23T00:51:42.289135+0000 mgr.smithi046.lplrtl (mgr.14184) 1146 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:43.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:43 smithi142 bash[20802]: cluster 2024-02-23T00:51:42.289135+0000 mgr.smithi046.lplrtl (mgr.14184) 1146 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:44.112 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:44.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:44 smithi046 bash[16275]: audit 2024-02-23T00:51:43.456711+0000 mgr.smithi046.lplrtl (mgr.14184) 1147 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:44.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:44 smithi046 bash[16275]: audit 2024-02-23T00:51:44.243734+0000 mon.smithi046 (mon.0) 945 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:51:44.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:44 smithi142 bash[20802]: audit 2024-02-23T00:51:43.456711+0000 mgr.smithi046.lplrtl (mgr.14184) 1147 : audit [DBG] from='client.15462 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:44.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:44 smithi142 bash[20802]: audit 2024-02-23T00:51:44.243734+0000 mon.smithi046 (mon.0) 945 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:51:45.113 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: cluster 2024-02-23T00:51:44.290183+0000 mgr.smithi046.lplrtl (mgr.14184) 1148 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:45.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: audit 2024-02-23T00:51:44.544291+0000 mon.smithi046 (mon.0) 946 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: audit 2024-02-23T00:51:44.545541+0000 mon.smithi046 (mon.0) 947 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: audit 2024-02-23T00:51:44.553351+0000 mon.smithi046 (mon.0) 948 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: cluster 2024-02-23T00:51:44.554562+0000 mgr.smithi046.lplrtl (mgr.14184) 1149 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: audit 2024-02-23T00:51:44.561863+0000 mon.smithi046 (mon.0) 949 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: audit 2024-02-23T00:51:44.578592+0000 mon.smithi046 (mon.0) 950 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:45.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:45 smithi046 bash[16275]: cephadm 2024-02-23T00:51:44.584022+0000 mgr.smithi046.lplrtl (mgr.14184) 1150 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lgwizg on smithi142 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: cluster 2024-02-23T00:51:44.290183+0000 mgr.smithi046.lplrtl (mgr.14184) 1148 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: audit 2024-02-23T00:51:44.544291+0000 mon.smithi046 (mon.0) 946 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: audit 2024-02-23T00:51:44.545541+0000 mon.smithi046 (mon.0) 947 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: audit 2024-02-23T00:51:44.553351+0000 mon.smithi046 (mon.0) 948 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: cluster 2024-02-23T00:51:44.554562+0000 mgr.smithi046.lplrtl (mgr.14184) 1149 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: audit 2024-02-23T00:51:44.561863+0000 mon.smithi046 (mon.0) 949 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: audit 2024-02-23T00:51:44.578592+0000 mon.smithi046 (mon.0) 950 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:45.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:45 smithi142 bash[20802]: cephadm 2024-02-23T00:51:44.584022+0000 mgr.smithi046.lplrtl (mgr.14184) 1150 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.lgwizg on smithi142 2024-02-23T00:51:46.539 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:46 smithi046 bash[16275]: cluster 2024-02-23T00:51:45.550582+0000 mon.smithi046 (mon.0) 951 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:51:46.539 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:46 smithi046 bash[16275]: cluster 2024-02-23T00:51:45.550650+0000 mon.smithi046 (mon.0) 952 : cluster [INF] Cluster is now healthy 2024-02-23T00:51:46.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:46 smithi142 bash[20802]: cluster 2024-02-23T00:51:45.550582+0000 mon.smithi046 (mon.0) 951 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:51:46.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:46 smithi142 bash[20802]: cluster 2024-02-23T00:51:45.550650+0000 mon.smithi046 (mon.0) 952 : cluster [INF] Cluster is now healthy 2024-02-23T00:51:47.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:47 smithi046 bash[16275]: cluster 2024-02-23T00:51:46.555624+0000 mgr.smithi046.lplrtl (mgr.14184) 1151 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:47 smithi142 bash[20802]: cluster 2024-02-23T00:51:46.555624+0000 mgr.smithi046.lplrtl (mgr.14184) 1151 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:48.191 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:48.191 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:49:36.197853Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.ukpsyb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:40.478962Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.vidbko on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-vidbko\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.vidbko\nDeploy daemon haproxy.nfs.foo.smithi142.vidbko ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.230843Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.oxtpaw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-oxtpaw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.oxtpaw\nDeploy daemon haproxy.nfs.foo.smithi046.oxtpaw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:50:44.235068Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.kyjxos on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:48.794 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:49.795 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: audit 2024-02-23T00:51:48.172228+0000 mgr.smithi046.lplrtl (mgr.14184) 1152 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: cluster 2024-02-23T00:51:48.557044+0000 mgr.smithi046.lplrtl (mgr.14184) 1153 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: cephadm 2024-02-23T00:51:48.724089+0000 mgr.smithi046.lplrtl (mgr.14184) 1154 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:49.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: cephadm 2024-02-23T00:51:48.724565+0000 mgr.smithi046.lplrtl (mgr.14184) 1155 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: audit 2024-02-23T00:51:48.725072+0000 mon.smithi046 (mon.0) 953 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lgwizg"}]: dispatch 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: cephadm 2024-02-23T00:51:48.726522+0000 mgr.smithi046.lplrtl (mgr.14184) 1156 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:49.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:49.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:49 smithi046 bash[16275]: cephadm 2024-02-23T00:51:48.729057+0000 mgr.smithi046.lplrtl (mgr.14184) 1157 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.idbrtv on smithi046 2024-02-23T00:51:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: audit 2024-02-23T00:51:48.172228+0000 mgr.smithi046.lplrtl (mgr.14184) 1152 : audit [DBG] from='client.15466 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: cluster 2024-02-23T00:51:48.557044+0000 mgr.smithi046.lplrtl (mgr.14184) 1153 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: cephadm 2024-02-23T00:51:48.724089+0000 mgr.smithi046.lplrtl (mgr.14184) 1154 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:51:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:50.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: cephadm 2024-02-23T00:51:48.724565+0000 mgr.smithi046.lplrtl (mgr.14184) 1155 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: audit 2024-02-23T00:51:48.725072+0000 mon.smithi046 (mon.0) 953 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.lgwizg"}]: dispatch 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: cephadm 2024-02-23T00:51:48.726522+0000 mgr.smithi046.lplrtl (mgr.14184) 1156 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.lgwizg ... 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:50.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:50.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:50.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:50.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:49 smithi142 bash[20802]: cephadm 2024-02-23T00:51:48.729057+0000 mgr.smithi046.lplrtl (mgr.14184) 1157 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.idbrtv on smithi046 2024-02-23T00:51:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:51 smithi046 bash[16275]: audit 2024-02-23T00:51:50.337667+0000 mon.smithi046 (mon.0) 954 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:51.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:51 smithi046 bash[16275]: cluster 2024-02-23T00:51:50.558639+0000 mgr.smithi046.lplrtl (mgr.14184) 1158 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:51 smithi142 bash[20802]: audit 2024-02-23T00:51:50.337667+0000 mon.smithi046 (mon.0) 954 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:51.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:51 smithi142 bash[20802]: cluster 2024-02-23T00:51:50.558639+0000 mgr.smithi046.lplrtl (mgr.14184) 1158 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:52.980 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:52.980 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:53.589 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cluster 2024-02-23T00:51:52.560051+0000 mgr.smithi046.lplrtl (mgr.14184) 1159 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cephadm 2024-02-23T00:51:52.687868+0000 mgr.smithi046.lplrtl (mgr.14184) 1160 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cephadm 2024-02-23T00:51:52.688552+0000 mgr.smithi046.lplrtl (mgr.14184) 1161 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: audit 2024-02-23T00:51:52.689110+0000 mon.smithi046 (mon.0) 955 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.idbrtv"}]: dispatch 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cephadm 2024-02-23T00:51:52.690448+0000 mgr.smithi046.lplrtl (mgr.14184) 1162 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cephadm 2024-02-23T00:51:52.692319+0000 mgr.smithi046.lplrtl (mgr.14184) 1163 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cephadm 2024-02-23T00:51:52.696394+0000 mgr.smithi046.lplrtl (mgr.14184) 1164 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:51:53.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:53 smithi046 bash[16275]: cluster 2024-02-23T00:51:52.697301+0000 mgr.smithi046.lplrtl (mgr.14184) 1165 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 B/s rd, 0 op/s 2024-02-23T00:51:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cluster 2024-02-23T00:51:52.560051+0000 mgr.smithi046.lplrtl (mgr.14184) 1159 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:51:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cephadm 2024-02-23T00:51:52.687868+0000 mgr.smithi046.lplrtl (mgr.14184) 1160 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:51:54.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:54.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cephadm 2024-02-23T00:51:52.688552+0000 mgr.smithi046.lplrtl (mgr.14184) 1161 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: audit 2024-02-23T00:51:52.689110+0000 mon.smithi046 (mon.0) 955 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.idbrtv"}]: dispatch 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cephadm 2024-02-23T00:51:52.690448+0000 mgr.smithi046.lplrtl (mgr.14184) 1162 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.idbrtv ... 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:51:54.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:51:54.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:51:54.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cephadm 2024-02-23T00:51:52.692319+0000 mgr.smithi046.lplrtl (mgr.14184) 1163 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:51:54.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cephadm 2024-02-23T00:51:52.696394+0000 mgr.smithi046.lplrtl (mgr.14184) 1164 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:51:54.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:53 smithi142 bash[20802]: cluster 2024-02-23T00:51:52.697301+0000 mgr.smithi046.lplrtl (mgr.14184) 1165 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 121 B/s rd, 0 op/s 2024-02-23T00:51:54.590 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:51:54.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:54 smithi046 bash[16275]: audit 2024-02-23T00:51:52.961588+0000 mgr.smithi046.lplrtl (mgr.14184) 1166 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:54.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:54 smithi046 bash[16275]: cluster 2024-02-23T00:51:53.613673+0000 mon.smithi046 (mon.0) 956 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:51:54.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:54 smithi046 bash[16275]: audit 2024-02-23T00:51:54.208430+0000 mon.smithi046 (mon.0) 957 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:54 smithi142 bash[20802]: audit 2024-02-23T00:51:52.961588+0000 mgr.smithi046.lplrtl (mgr.14184) 1166 : audit [DBG] from='client.15470 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:54 smithi142 bash[20802]: cluster 2024-02-23T00:51:53.613673+0000 mon.smithi046 (mon.0) 956 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:51:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:54 smithi142 bash[20802]: audit 2024-02-23T00:51:54.208430+0000 mon.smithi046 (mon.0) 957 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:51:55.976 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:55 smithi046 bash[16275]: cluster 2024-02-23T00:51:54.698553+0000 mgr.smithi046.lplrtl (mgr.14184) 1167 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:55 smithi142 bash[20802]: cluster 2024-02-23T00:51:54.698553+0000 mgr.smithi046.lplrtl (mgr.14184) 1167 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:57.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:56 smithi046 bash[16275]: cluster 2024-02-23T00:51:56.699969+0000 mgr.smithi046.lplrtl (mgr.14184) 1168 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:57.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:56 smithi142 bash[20802]: cluster 2024-02-23T00:51:56.699969+0000 mgr.smithi046.lplrtl (mgr.14184) 1168 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:57.688 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:51:57.688 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:51:57.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:57 smithi046 bash[16275]: audit 2024-02-23T00:51:57.666590+0000 mgr.smithi046.lplrtl (mgr.14184) 1169 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:58.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:57 smithi142 bash[20802]: audit 2024-02-23T00:51:57.666590+0000 mgr.smithi046.lplrtl (mgr.14184) 1169 : audit [DBG] from='client.15474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:51:58.293 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:51:59.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:51:58 smithi046 bash[16275]: cluster 2024-02-23T00:51:58.701428+0000 mgr.smithi046.lplrtl (mgr.14184) 1170 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:59.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:51:58 smithi142 bash[20802]: cluster 2024-02-23T00:51:58.701428+0000 mgr.smithi046.lplrtl (mgr.14184) 1170 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:51:59.294 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:00.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:00 smithi046 bash[16275]: cluster 2024-02-23T00:52:00.702679+0000 mgr.smithi046.lplrtl (mgr.14184) 1171 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:52:01.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:00 smithi142 bash[20802]: cluster 2024-02-23T00:52:00.702679+0000 mgr.smithi046.lplrtl (mgr.14184) 1171 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:52:02.489 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:02.489 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:03.075 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:02 smithi046 bash[16275]: audit 2024-02-23T00:52:02.469740+0000 mgr.smithi046.lplrtl (mgr.14184) 1172 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:03.076 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:02 smithi046 bash[16275]: cluster 2024-02-23T00:52:02.704347+0000 mgr.smithi046.lplrtl (mgr.14184) 1173 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:52:03.077 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:03.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:02 smithi142 bash[20802]: audit 2024-02-23T00:52:02.469740+0000 mgr.smithi046.lplrtl (mgr.14184) 1172 : audit [DBG] from='client.15478 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:03.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:02 smithi142 bash[20802]: cluster 2024-02-23T00:52:02.704347+0000 mgr.smithi046.lplrtl (mgr.14184) 1173 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:52:04.078 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:05.158 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:04 smithi046 bash[16275]: cluster 2024-02-23T00:52:04.706366+0000 mgr.smithi046.lplrtl (mgr.14184) 1174 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:05.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:04 smithi142 bash[20802]: cluster 2024-02-23T00:52:04.706366+0000 mgr.smithi046.lplrtl (mgr.14184) 1174 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:06.701 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:06 smithi046 bash[16275]: audit 2024-02-23T00:52:05.338458+0000 mon.smithi046 (mon.0) 958 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:06.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:06 smithi142 bash[20802]: audit 2024-02-23T00:52:05.338458+0000 mon.smithi046 (mon.0) 958 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:07.143 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:07.143 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:07.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:07 smithi046 bash[16275]: cluster 2024-02-23T00:52:06.708209+0000 mgr.smithi046.lplrtl (mgr.14184) 1175 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:07.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:07 smithi142 bash[20802]: cluster 2024-02-23T00:52:06.708209+0000 mgr.smithi046.lplrtl (mgr.14184) 1175 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:07.770 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:08.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:08 smithi046 bash[16275]: audit 2024-02-23T00:52:07.125611+0000 mgr.smithi046.lplrtl (mgr.14184) 1176 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:08.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:08 smithi142 bash[20802]: audit 2024-02-23T00:52:07.125611+0000 mgr.smithi046.lplrtl (mgr.14184) 1176 : audit [DBG] from='client.15482 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:08.771 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:09.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:09 smithi046 bash[16275]: cluster 2024-02-23T00:52:08.709653+0000 mgr.smithi046.lplrtl (mgr.14184) 1177 : cluster [DBG] pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:09 smithi142 bash[20802]: cluster 2024-02-23T00:52:08.709653+0000 mgr.smithi046.lplrtl (mgr.14184) 1177 : cluster [DBG] pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:11.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:10 smithi046 bash[16275]: cluster 2024-02-23T00:52:10.711367+0000 mgr.smithi046.lplrtl (mgr.14184) 1178 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:11.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:10 smithi142 bash[20802]: cluster 2024-02-23T00:52:10.711367+0000 mgr.smithi046.lplrtl (mgr.14184) 1178 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:12.075 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:12.075 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:12.708 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:12.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:12 smithi046 bash[16275]: audit 2024-02-23T00:52:12.056719+0000 mgr.smithi046.lplrtl (mgr.14184) 1179 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:12.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:12 smithi046 bash[16275]: cluster 2024-02-23T00:52:12.713111+0000 mgr.smithi046.lplrtl (mgr.14184) 1180 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:12 smithi142 bash[20802]: audit 2024-02-23T00:52:12.056719+0000 mgr.smithi046.lplrtl (mgr.14184) 1179 : audit [DBG] from='client.15486 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:12 smithi142 bash[20802]: cluster 2024-02-23T00:52:12.713111+0000 mgr.smithi046.lplrtl (mgr.14184) 1180 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:13.709 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:14.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:14 smithi046 bash[16275]: cluster 2024-02-23T00:52:14.715278+0000 mgr.smithi046.lplrtl (mgr.14184) 1181 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:15.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:14 smithi142 bash[20802]: cluster 2024-02-23T00:52:14.715278+0000 mgr.smithi046.lplrtl (mgr.14184) 1181 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:16.606 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:16.606 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:16 smithi046 bash[16275]: audit 2024-02-23T00:52:16.590295+0000 mgr.smithi046.lplrtl (mgr.14184) 1182 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:16 smithi046 bash[16275]: cluster 2024-02-23T00:52:16.716704+0000 mgr.smithi046.lplrtl (mgr.14184) 1183 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:17.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:17.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:16 smithi142 bash[20802]: audit 2024-02-23T00:52:16.590295+0000 mgr.smithi046.lplrtl (mgr.14184) 1182 : audit [DBG] from='client.15490 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:17.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:16 smithi142 bash[20802]: cluster 2024-02-23T00:52:16.716704+0000 mgr.smithi046.lplrtl (mgr.14184) 1183 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:18.242 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:19.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:18 smithi046 bash[16275]: cluster 2024-02-23T00:52:18.718076+0000 mgr.smithi046.lplrtl (mgr.14184) 1184 : cluster [DBG] pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:19.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:18 smithi142 bash[20802]: cluster 2024-02-23T00:52:18.718076+0000 mgr.smithi046.lplrtl (mgr.14184) 1184 : cluster [DBG] pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:21.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:20 smithi046 bash[16275]: cluster 2024-02-23T00:52:20.720088+0000 mgr.smithi046.lplrtl (mgr.14184) 1185 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:21.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:20 smithi142 bash[20802]: cluster 2024-02-23T00:52:20.720088+0000 mgr.smithi046.lplrtl (mgr.14184) 1185 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:21.276 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:21.276 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:21.885 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:22.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:21 smithi046 bash[16275]: audit 2024-02-23T00:52:21.262048+0000 mgr.smithi046.lplrtl (mgr.14184) 1186 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:22.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:21 smithi142 bash[20802]: audit 2024-02-23T00:52:21.262048+0000 mgr.smithi046.lplrtl (mgr.14184) 1186 : audit [DBG] from='client.15494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:22.886 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:23.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:22 smithi046 bash[16275]: cluster 2024-02-23T00:52:22.721695+0000 mgr.smithi046.lplrtl (mgr.14184) 1187 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:23.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:22 smithi142 bash[20802]: cluster 2024-02-23T00:52:22.721695+0000 mgr.smithi046.lplrtl (mgr.14184) 1187 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:25.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:24 smithi046 bash[16275]: cluster 2024-02-23T00:52:24.723725+0000 mgr.smithi046.lplrtl (mgr.14184) 1188 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:25.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:24 smithi142 bash[20802]: cluster 2024-02-23T00:52:24.723725+0000 mgr.smithi046.lplrtl (mgr.14184) 1188 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:25.843 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:25.843 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:26.453 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:27.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:26 smithi046 bash[16275]: audit 2024-02-23T00:52:25.823395+0000 mgr.smithi046.lplrtl (mgr.14184) 1189 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:27.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:26 smithi046 bash[16275]: cluster 2024-02-23T00:52:26.725089+0000 mgr.smithi046.lplrtl (mgr.14184) 1190 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:27.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:26 smithi142 bash[20802]: audit 2024-02-23T00:52:25.823395+0000 mgr.smithi046.lplrtl (mgr.14184) 1189 : audit [DBG] from='client.15498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:27.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:26 smithi142 bash[20802]: cluster 2024-02-23T00:52:26.725089+0000 mgr.smithi046.lplrtl (mgr.14184) 1190 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:27.454 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:29.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:28 smithi046 bash[16275]: cluster 2024-02-23T00:52:28.726453+0000 mgr.smithi046.lplrtl (mgr.14184) 1191 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:29.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:28 smithi142 bash[20802]: cluster 2024-02-23T00:52:28.726453+0000 mgr.smithi046.lplrtl (mgr.14184) 1191 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:30.368 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:30.369 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:30.982 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:31.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:30 smithi046 bash[16275]: audit 2024-02-23T00:52:30.351500+0000 mgr.smithi046.lplrtl (mgr.14184) 1192 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:31.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:30 smithi046 bash[16275]: cluster 2024-02-23T00:52:30.728335+0000 mgr.smithi046.lplrtl (mgr.14184) 1193 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:30 smithi142 bash[20802]: audit 2024-02-23T00:52:30.351500+0000 mgr.smithi046.lplrtl (mgr.14184) 1192 : audit [DBG] from='client.15502 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:30 smithi142 bash[20802]: cluster 2024-02-23T00:52:30.728335+0000 mgr.smithi046.lplrtl (mgr.14184) 1193 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:31.983 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:33.083 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:32 smithi046 bash[16275]: cluster 2024-02-23T00:52:32.729927+0000 mgr.smithi046.lplrtl (mgr.14184) 1194 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:33.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:32 smithi142 bash[20802]: cluster 2024-02-23T00:52:32.729927+0000 mgr.smithi046.lplrtl (mgr.14184) 1194 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:34.989 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:34.989 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:35.064 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:34 smithi046 bash[16275]: cluster 2024-02-23T00:52:34.732054+0000 mgr.smithi046.lplrtl (mgr.14184) 1195 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:35.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:34 smithi142 bash[20802]: cluster 2024-02-23T00:52:34.732054+0000 mgr.smithi046.lplrtl (mgr.14184) 1195 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:35.637 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:35.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:35 smithi046 bash[16275]: audit 2024-02-23T00:52:34.969774+0000 mgr.smithi046.lplrtl (mgr.14184) 1196 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:36.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:35 smithi142 bash[20802]: audit 2024-02-23T00:52:34.969774+0000 mgr.smithi046.lplrtl (mgr.14184) 1196 : audit [DBG] from='client.15506 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:36.638 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:36.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:36 smithi046 bash[16275]: cluster 2024-02-23T00:52:36.733524+0000 mgr.smithi046.lplrtl (mgr.14184) 1197 : cluster [DBG] pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:37.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:36 smithi142 bash[20802]: cluster 2024-02-23T00:52:36.733524+0000 mgr.smithi046.lplrtl (mgr.14184) 1197 : cluster [DBG] pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:39.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:38 smithi046 bash[16275]: cluster 2024-02-23T00:52:38.734931+0000 mgr.smithi046.lplrtl (mgr.14184) 1198 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:39.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:38 smithi142 bash[20802]: cluster 2024-02-23T00:52:38.734931+0000 mgr.smithi046.lplrtl (mgr.14184) 1198 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:39.816 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:39.816 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:40.429 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:41.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:40 smithi046 bash[16275]: audit 2024-02-23T00:52:39.796429+0000 mgr.smithi046.lplrtl (mgr.14184) 1199 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:41.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:40 smithi046 bash[16275]: cluster 2024-02-23T00:52:40.736194+0000 mgr.smithi046.lplrtl (mgr.14184) 1200 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:41.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:40 smithi142 bash[20802]: audit 2024-02-23T00:52:39.796429+0000 mgr.smithi046.lplrtl (mgr.14184) 1199 : audit [DBG] from='client.15510 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:41.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:40 smithi142 bash[20802]: cluster 2024-02-23T00:52:40.736194+0000 mgr.smithi046.lplrtl (mgr.14184) 1200 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:41.430 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:43.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:42 smithi046 bash[16275]: cluster 2024-02-23T00:52:42.737761+0000 mgr.smithi046.lplrtl (mgr.14184) 1201 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:43.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:42 smithi142 bash[20802]: cluster 2024-02-23T00:52:42.737761+0000 mgr.smithi046.lplrtl (mgr.14184) 1201 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:44.448 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:44.448 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:45.078 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:44 smithi046 bash[16275]: audit 2024-02-23T00:52:44.433776+0000 mgr.smithi046.lplrtl (mgr.14184) 1202 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:45.078 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:44 smithi046 bash[16275]: cluster 2024-02-23T00:52:44.739939+0000 mgr.smithi046.lplrtl (mgr.14184) 1203 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:45.079 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:44 smithi142 bash[20802]: audit 2024-02-23T00:52:44.433776+0000 mgr.smithi046.lplrtl (mgr.14184) 1202 : audit [DBG] from='client.15514 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:44 smithi142 bash[20802]: cluster 2024-02-23T00:52:44.739939+0000 mgr.smithi046.lplrtl (mgr.14184) 1203 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:46.081 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:47.138 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:46 smithi046 bash[16275]: cluster 2024-02-23T00:52:46.741445+0000 mgr.smithi046.lplrtl (mgr.14184) 1204 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:47.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:46 smithi142 bash[20802]: cluster 2024-02-23T00:52:46.741445+0000 mgr.smithi046.lplrtl (mgr.14184) 1204 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:48.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:48 smithi046 bash[16275]: cluster 2024-02-23T00:52:48.742940+0000 mgr.smithi046.lplrtl (mgr.14184) 1205 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:49.055 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:49.056 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:49.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:48 smithi142 bash[20802]: cluster 2024-02-23T00:52:48.742940+0000 mgr.smithi046.lplrtl (mgr.14184) 1205 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:49.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:49.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:49 smithi046 bash[16275]: audit 2024-02-23T00:52:49.037105+0000 mgr.smithi046.lplrtl (mgr.14184) 1206 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:49 smithi142 bash[20802]: audit 2024-02-23T00:52:49.037105+0000 mgr.smithi046.lplrtl (mgr.14184) 1206 : audit [DBG] from='client.15518 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:50.703 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:51.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:50 smithi046 bash[16275]: cluster 2024-02-23T00:52:50.744764+0000 mgr.smithi046.lplrtl (mgr.14184) 1207 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:50 smithi142 bash[20802]: cluster 2024-02-23T00:52:50.744764+0000 mgr.smithi046.lplrtl (mgr.14184) 1207 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:52:53.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:52 smithi046 bash[16275]: audit 2024-02-23T00:52:52.699965+0000 mon.smithi046 (mon.0) 959 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:52:53.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:52 smithi142 bash[20802]: audit 2024-02-23T00:52:52.699965+0000 mon.smithi046 (mon.0) 959 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:52:53.917 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:53.917 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:50:44.239260Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wfkdbt on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: cluster 2024-02-23T00:52:52.746203+0000 mgr.smithi046.lplrtl (mgr.14184) 1208 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: audit 2024-02-23T00:52:53.009951+0000 mon.smithi046 (mon.0) 960 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: audit 2024-02-23T00:52:53.011419+0000 mon.smithi046 (mon.0) 961 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: audit 2024-02-23T00:52:53.019873+0000 mon.smithi046 (mon.0) 962 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: audit 2024-02-23T00:52:53.028303+0000 mon.smithi046 (mon.0) 963 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:52:54.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:53 smithi046 bash[16275]: audit 2024-02-23T00:52:53.040939+0000 mon.smithi046 (mon.0) 964 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: cluster 2024-02-23T00:52:52.746203+0000 mgr.smithi046.lplrtl (mgr.14184) 1208 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: audit 2024-02-23T00:52:53.009951+0000 mon.smithi046 (mon.0) 960 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: audit 2024-02-23T00:52:53.011419+0000 mon.smithi046 (mon.0) 961 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: audit 2024-02-23T00:52:53.019873+0000 mon.smithi046 (mon.0) 962 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: audit 2024-02-23T00:52:53.028303+0000 mon.smithi046 (mon.0) 963 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:52:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:53 smithi142 bash[20802]: audit 2024-02-23T00:52:53.040939+0000 mon.smithi046 (mon.0) 964 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:52:54.590 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:52:54.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:54 smithi046 bash[16275]: cluster 2024-02-23T00:52:53.020993+0000 mgr.smithi046.lplrtl (mgr.14184) 1209 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:54.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:54 smithi046 bash[16275]: cephadm 2024-02-23T00:52:53.044198+0000 mgr.smithi046.lplrtl (mgr.14184) 1210 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zroalo on smithi142 2024-02-23T00:52:54.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:54 smithi046 bash[16275]: audit 2024-02-23T00:52:53.894870+0000 mgr.smithi046.lplrtl (mgr.14184) 1211 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:54.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:54 smithi046 bash[16275]: cluster 2024-02-23T00:52:54.016640+0000 mon.smithi046 (mon.0) 965 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:52:54.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:54 smithi046 bash[16275]: cluster 2024-02-23T00:52:54.016717+0000 mon.smithi046 (mon.0) 966 : cluster [INF] Cluster is now healthy 2024-02-23T00:52:55.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:54 smithi142 bash[20802]: cluster 2024-02-23T00:52:53.020993+0000 mgr.smithi046.lplrtl (mgr.14184) 1209 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:55.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:54 smithi142 bash[20802]: cephadm 2024-02-23T00:52:53.044198+0000 mgr.smithi046.lplrtl (mgr.14184) 1210 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.zroalo on smithi142 2024-02-23T00:52:55.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:54 smithi142 bash[20802]: audit 2024-02-23T00:52:53.894870+0000 mgr.smithi046.lplrtl (mgr.14184) 1211 : audit [DBG] from='client.15522 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:55.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:54 smithi142 bash[20802]: cluster 2024-02-23T00:52:54.016640+0000 mon.smithi046 (mon.0) 965 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:52:55.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:54 smithi142 bash[20802]: cluster 2024-02-23T00:52:54.016717+0000 mon.smithi046 (mon.0) 966 : cluster [INF] Cluster is now healthy 2024-02-23T00:52:55.591 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:52:56.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:55 smithi046 bash[16275]: cluster 2024-02-23T00:52:55.022781+0000 mgr.smithi046.lplrtl (mgr.14184) 1212 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:56.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:55 smithi142 bash[20802]: cluster 2024-02-23T00:52:55.022781+0000 mgr.smithi046.lplrtl (mgr.14184) 1212 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:56 smithi046 bash[16275]: audit 2024-02-23T00:52:56.855476+0000 mon.smithi046 (mon.0) 967 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zroalo"}]: dispatch 2024-02-23T00:52:57.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:56 smithi142 bash[20802]: audit 2024-02-23T00:52:56.855476+0000 mon.smithi046 (mon.0) 967 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.zroalo"}]: dispatch 2024-02-23T00:52:58.220 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: cephadm 2024-02-23T00:52:56.854272+0000 mgr.smithi046.lplrtl (mgr.14184) 1213 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.220 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.220 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.220 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.220 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.221 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: cephadm 2024-02-23T00:52:56.854762+0000 mgr.smithi046.lplrtl (mgr.14184) 1214 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: cephadm 2024-02-23T00:52:56.856779+0000 mgr.smithi046.lplrtl (mgr.14184) 1215 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.222 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: cephadm 2024-02-23T00:52:56.859943+0000 mgr.smithi046.lplrtl (mgr.14184) 1216 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.kontks on smithi046 2024-02-23T00:52:58.223 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:57 smithi046 bash[16275]: cluster 2024-02-23T00:52:57.023606+0000 mgr.smithi046.lplrtl (mgr.14184) 1217 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: cephadm 2024-02-23T00:52:56.854272+0000 mgr.smithi046.lplrtl (mgr.14184) 1213 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: cephadm 2024-02-23T00:52:56.854762+0000 mgr.smithi046.lplrtl (mgr.14184) 1214 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: cephadm 2024-02-23T00:52:56.856779+0000 mgr.smithi046.lplrtl (mgr.14184) 1215 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.zroalo ... 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: cephadm 2024-02-23T00:52:56.859943+0000 mgr.smithi046.lplrtl (mgr.14184) 1216 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.kontks on smithi046 2024-02-23T00:52:58.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:57 smithi142 bash[20802]: cluster 2024-02-23T00:52:57.023606+0000 mgr.smithi046.lplrtl (mgr.14184) 1217 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:52:58.658 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:52:58.658 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:48.726383Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.lgwizg on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-lgwizg\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.lgwizg\nDeploy daemon haproxy.nfs.foo.smithi142.lgwizg ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.690335Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.idbrtv on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-idbrtv\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.idbrtv\nDeploy daemon haproxy.nfs.foo.smithi046.idbrtv ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:51:52.692218Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.regiih on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:52:58.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:58 smithi046 bash[16275]: audit 2024-02-23T00:52:58.636666+0000 mgr.smithi046.lplrtl (mgr.14184) 1218 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:59.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:58 smithi142 bash[20802]: audit 2024-02-23T00:52:58.636666+0000 mgr.smithi046.lplrtl (mgr.14184) 1218 : audit [DBG] from='client.15526 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:52:59.288 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:00.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:52:59 smithi046 bash[16275]: cluster 2024-02-23T00:52:59.024525+0000 mgr.smithi046.lplrtl (mgr.14184) 1219 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:53:00.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:52:59 smithi142 bash[20802]: cluster 2024-02-23T00:52:59.024525+0000 mgr.smithi046.lplrtl (mgr.14184) 1219 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:53:00.289 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:02.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cluster 2024-02-23T00:53:01.025877+0000 mgr.smithi046.lplrtl (mgr.14184) 1220 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cephadm 2024-02-23T00:53:01.245347+0000 mgr.smithi046.lplrtl (mgr.14184) 1221 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.493 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.494 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cephadm 2024-02-23T00:53:01.245644+0000 mgr.smithi046.lplrtl (mgr.14184) 1222 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: audit 2024-02-23T00:53:01.246154+0000 mon.smithi046 (mon.0) 968 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.kontks"}]: dispatch 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cephadm 2024-02-23T00:53:01.247144+0000 mgr.smithi046.lplrtl (mgr.14184) 1223 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.495 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cephadm 2024-02-23T00:53:01.249425+0000 mgr.smithi046.lplrtl (mgr.14184) 1224 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cephadm 2024-02-23T00:53:01.251369+0000 mgr.smithi046.lplrtl (mgr.14184) 1225 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:53:02.496 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:02 smithi046 bash[16275]: cluster 2024-02-23T00:53:01.252225+0000 mgr.smithi046.lplrtl (mgr.14184) 1226 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-23T00:53:02.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cluster 2024-02-23T00:53:01.025877+0000 mgr.smithi046.lplrtl (mgr.14184) 1220 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:53:02.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cephadm 2024-02-23T00:53:01.245347+0000 mgr.smithi046.lplrtl (mgr.14184) 1221 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:53:02.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.510 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cephadm 2024-02-23T00:53:01.245644+0000 mgr.smithi046.lplrtl (mgr.14184) 1222 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: audit 2024-02-23T00:53:01.246154+0000 mon.smithi046 (mon.0) 968 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.kontks"}]: dispatch 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cephadm 2024-02-23T00:53:01.247144+0000 mgr.smithi046.lplrtl (mgr.14184) 1223 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:53:02.511 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.kontks ... 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cephadm 2024-02-23T00:53:01.249425+0000 mgr.smithi046.lplrtl (mgr.14184) 1224 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cephadm 2024-02-23T00:53:01.251369+0000 mgr.smithi046.lplrtl (mgr.14184) 1225 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:53:02.512 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:02 smithi142 bash[20802]: cluster 2024-02-23T00:53:01.252225+0000 mgr.smithi046.lplrtl (mgr.14184) 1226 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 120 B/s rd, 0 op/s 2024-02-23T00:53:03.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:03 smithi046 bash[16275]: cluster 2024-02-23T00:53:02.080425+0000 mon.smithi046 (mon.0) 969 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:53:03.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:03 smithi142 bash[20802]: cluster 2024-02-23T00:53:02.080425+0000 mon.smithi046 (mon.0) 969 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:53:03.528 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:03.528 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:04.174 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:04.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:04 smithi046 bash[16275]: cluster 2024-02-23T00:53:03.253227+0000 mgr.smithi046.lplrtl (mgr.14184) 1227 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:04.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:04 smithi046 bash[16275]: audit 2024-02-23T00:53:03.513983+0000 mgr.smithi046.lplrtl (mgr.14184) 1228 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:04.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:04 smithi142 bash[20802]: cluster 2024-02-23T00:53:03.253227+0000 mgr.smithi046.lplrtl (mgr.14184) 1227 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:04.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:04 smithi142 bash[20802]: audit 2024-02-23T00:53:03.513983+0000 mgr.smithi046.lplrtl (mgr.14184) 1228 : audit [DBG] from='client.15530 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:05.176 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:05.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:05 smithi046 bash[16275]: audit 2024-02-23T00:53:04.262993+0000 mon.smithi046 (mon.0) 970 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:53:05.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:05 smithi142 bash[20802]: audit 2024-02-23T00:53:04.262993+0000 mon.smithi046 (mon.0) 970 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:53:06.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:06 smithi046 bash[16275]: cluster 2024-02-23T00:53:05.255228+0000 mgr.smithi046.lplrtl (mgr.14184) 1229 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:06 smithi142 bash[20802]: cluster 2024-02-23T00:53:05.255228+0000 mgr.smithi046.lplrtl (mgr.14184) 1229 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:08.170 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:08.171 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:08.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:08 smithi046 bash[16275]: cluster 2024-02-23T00:53:07.256661+0000 mgr.smithi046.lplrtl (mgr.14184) 1230 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:08.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:08 smithi142 bash[20802]: cluster 2024-02-23T00:53:07.256661+0000 mgr.smithi046.lplrtl (mgr.14184) 1230 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:08.808 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:09.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:09 smithi046 bash[16275]: audit 2024-02-23T00:53:08.148599+0000 mgr.smithi046.lplrtl (mgr.14184) 1231 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:09.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:09 smithi142 bash[20802]: audit 2024-02-23T00:53:08.148599+0000 mgr.smithi046.lplrtl (mgr.14184) 1231 : audit [DBG] from='client.15534 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:09.809 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:10.556 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:10 smithi046 bash[16275]: cluster 2024-02-23T00:53:09.258128+0000 mgr.smithi046.lplrtl (mgr.14184) 1232 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:10.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:10 smithi142 bash[20802]: cluster 2024-02-23T00:53:09.258128+0000 mgr.smithi046.lplrtl (mgr.14184) 1232 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:12.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:12 smithi046 bash[16275]: cluster 2024-02-23T00:53:11.259931+0000 mgr.smithi046.lplrtl (mgr.14184) 1233 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:12.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:12 smithi142 bash[20802]: cluster 2024-02-23T00:53:11.259931+0000 mgr.smithi046.lplrtl (mgr.14184) 1233 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:53:12.811 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:12.811 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:13.451 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:14.452 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:14.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:14 smithi046 bash[16275]: audit 2024-02-23T00:53:12.789044+0000 mgr.smithi046.lplrtl (mgr.14184) 1234 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:14.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:14 smithi046 bash[16275]: cluster 2024-02-23T00:53:13.261559+0000 mgr.smithi046.lplrtl (mgr.14184) 1235 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:14 smithi142 bash[20802]: audit 2024-02-23T00:53:12.789044+0000 mgr.smithi046.lplrtl (mgr.14184) 1234 : audit [DBG] from='client.15538 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:14.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:14 smithi142 bash[20802]: cluster 2024-02-23T00:53:13.261559+0000 mgr.smithi046.lplrtl (mgr.14184) 1235 : cluster [DBG] pgmap v809: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:16.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:16 smithi046 bash[16275]: cluster 2024-02-23T00:53:15.263570+0000 mgr.smithi046.lplrtl (mgr.14184) 1236 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:16.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:16 smithi142 bash[20802]: cluster 2024-02-23T00:53:15.263570+0000 mgr.smithi046.lplrtl (mgr.14184) 1236 : cluster [DBG] pgmap v810: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:17.526 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:17.526 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:18.113 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:18.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:18 smithi046 bash[16275]: cluster 2024-02-23T00:53:17.265141+0000 mgr.smithi046.lplrtl (mgr.14184) 1237 : cluster [DBG] pgmap v811: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:18.492 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:18 smithi046 bash[16275]: audit 2024-02-23T00:53:17.509425+0000 mgr.smithi046.lplrtl (mgr.14184) 1238 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:18.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:18 smithi142 bash[20802]: cluster 2024-02-23T00:53:17.265141+0000 mgr.smithi046.lplrtl (mgr.14184) 1237 : cluster [DBG] pgmap v811: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:18.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:18 smithi142 bash[20802]: audit 2024-02-23T00:53:17.509425+0000 mgr.smithi046.lplrtl (mgr.14184) 1238 : audit [DBG] from='client.15542 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:19.114 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:20.457 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:20 smithi046 bash[16275]: cluster 2024-02-23T00:53:19.266584+0000 mgr.smithi046.lplrtl (mgr.14184) 1239 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:20.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:20 smithi142 bash[20802]: cluster 2024-02-23T00:53:19.266584+0000 mgr.smithi046.lplrtl (mgr.14184) 1239 : cluster [DBG] pgmap v812: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:22.132 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:22.132 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:22.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:22 smithi046 bash[16275]: cluster 2024-02-23T00:53:21.269069+0000 mgr.smithi046.lplrtl (mgr.14184) 1240 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:53:22.717 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:22.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:22 smithi142 bash[20802]: cluster 2024-02-23T00:53:21.269069+0000 mgr.smithi046.lplrtl (mgr.14184) 1240 : cluster [DBG] pgmap v813: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:53:23.718 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:23.731 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:23 smithi046 bash[16275]: audit 2024-02-23T00:53:22.112578+0000 mgr.smithi046.lplrtl (mgr.14184) 1241 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:23.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:23 smithi142 bash[20802]: audit 2024-02-23T00:53:22.112578+0000 mgr.smithi046.lplrtl (mgr.14184) 1241 : audit [DBG] from='client.15546 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:24.674 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:24 smithi046 bash[16275]: cluster 2024-02-23T00:53:23.270717+0000 mgr.smithi046.lplrtl (mgr.14184) 1242 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:24.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:24 smithi142 bash[20802]: cluster 2024-02-23T00:53:23.270717+0000 mgr.smithi046.lplrtl (mgr.14184) 1242 : cluster [DBG] pgmap v814: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:26.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:26 smithi046 bash[16275]: cluster 2024-02-23T00:53:25.272827+0000 mgr.smithi046.lplrtl (mgr.14184) 1243 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:26.555 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:26.555 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:26.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:26 smithi142 bash[20802]: cluster 2024-02-23T00:53:25.272827+0000 mgr.smithi046.lplrtl (mgr.14184) 1243 : cluster [DBG] pgmap v815: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:27.177 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:27.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:27 smithi046 bash[16275]: audit 2024-02-23T00:53:26.539588+0000 mgr.smithi046.lplrtl (mgr.14184) 1244 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:27.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:27 smithi142 bash[20802]: audit 2024-02-23T00:53:26.539588+0000 mgr.smithi046.lplrtl (mgr.14184) 1244 : audit [DBG] from='client.15550 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:28.178 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:28.491 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:28 smithi046 bash[16275]: cluster 2024-02-23T00:53:27.274359+0000 mgr.smithi046.lplrtl (mgr.14184) 1245 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:28.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:28 smithi142 bash[20802]: cluster 2024-02-23T00:53:27.274359+0000 mgr.smithi046.lplrtl (mgr.14184) 1245 : cluster [DBG] pgmap v816: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:30.699 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:30 smithi046 bash[16275]: cluster 2024-02-23T00:53:29.276051+0000 mgr.smithi046.lplrtl (mgr.14184) 1246 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:30.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:30 smithi142 bash[20802]: cluster 2024-02-23T00:53:29.276051+0000 mgr.smithi046.lplrtl (mgr.14184) 1246 : cluster [DBG] pgmap v817: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:31.154 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:31.154 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:31.783 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:32.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:32 smithi046 bash[16275]: audit 2024-02-23T00:53:31.135714+0000 mgr.smithi046.lplrtl (mgr.14184) 1247 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:32.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:32 smithi046 bash[16275]: cluster 2024-02-23T00:53:31.277872+0000 mgr.smithi046.lplrtl (mgr.14184) 1248 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:53:32.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:32 smithi142 bash[20802]: audit 2024-02-23T00:53:31.135714+0000 mgr.smithi046.lplrtl (mgr.14184) 1247 : audit [DBG] from='client.15554 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:32.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:32 smithi142 bash[20802]: cluster 2024-02-23T00:53:31.277872+0000 mgr.smithi046.lplrtl (mgr.14184) 1248 : cluster [DBG] pgmap v818: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:53:32.784 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:34.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:34 smithi046 bash[16275]: cluster 2024-02-23T00:53:33.279519+0000 mgr.smithi046.lplrtl (mgr.14184) 1249 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:34.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:34 smithi142 bash[20802]: cluster 2024-02-23T00:53:33.279519+0000 mgr.smithi046.lplrtl (mgr.14184) 1249 : cluster [DBG] pgmap v819: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:35.833 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:35.833 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:36.421 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:36.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:36 smithi046 bash[16275]: cluster 2024-02-23T00:53:35.281556+0000 mgr.smithi046.lplrtl (mgr.14184) 1250 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:36.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:36 smithi142 bash[20802]: cluster 2024-02-23T00:53:35.281556+0000 mgr.smithi046.lplrtl (mgr.14184) 1250 : cluster [DBG] pgmap v820: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:37.422 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:37 smithi046 bash[16275]: audit 2024-02-23T00:53:35.813812+0000 mgr.smithi046.lplrtl (mgr.14184) 1251 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:37 smithi142 bash[20802]: audit 2024-02-23T00:53:35.813812+0000 mgr.smithi046.lplrtl (mgr.14184) 1251 : audit [DBG] from='client.15558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:38.714 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:38 smithi046 bash[16275]: cluster 2024-02-23T00:53:37.283023+0000 mgr.smithi046.lplrtl (mgr.14184) 1252 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:38.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:38 smithi142 bash[20802]: cluster 2024-02-23T00:53:37.283023+0000 mgr.smithi046.lplrtl (mgr.14184) 1252 : cluster [DBG] pgmap v821: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:40.312 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:40.312 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:40.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:40 smithi046 bash[16275]: cluster 2024-02-23T00:53:39.284452+0000 mgr.smithi046.lplrtl (mgr.14184) 1253 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2024-02-23T00:53:40.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:40 smithi142 bash[20802]: cluster 2024-02-23T00:53:39.284452+0000 mgr.smithi046.lplrtl (mgr.14184) 1253 : cluster [DBG] pgmap v822: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 0 op/s 2024-02-23T00:53:40.888 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:41.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:41 smithi046 bash[16275]: audit 2024-02-23T00:53:40.297999+0000 mgr.smithi046.lplrtl (mgr.14184) 1254 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:41 smithi142 bash[20802]: audit 2024-02-23T00:53:40.297999+0000 mgr.smithi046.lplrtl (mgr.14184) 1254 : audit [DBG] from='client.15562 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:41.889 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:42 smithi046 bash[16275]: cluster 2024-02-23T00:53:41.286236+0000 mgr.smithi046.lplrtl (mgr.14184) 1255 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-02-23T00:53:42.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:42 smithi142 bash[20802]: cluster 2024-02-23T00:53:41.286236+0000 mgr.smithi046.lplrtl (mgr.14184) 1255 : cluster [DBG] pgmap v823: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-02-23T00:53:44.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:44 smithi046 bash[16275]: cluster 2024-02-23T00:53:43.288040+0000 mgr.smithi046.lplrtl (mgr.14184) 1256 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:44.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:44 smithi142 bash[20802]: cluster 2024-02-23T00:53:43.288040+0000 mgr.smithi046.lplrtl (mgr.14184) 1256 : cluster [DBG] pgmap v824: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:45.018 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:45.018 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:45.599 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:46.600 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:46.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:46 smithi046 bash[16275]: audit 2024-02-23T00:53:44.999192+0000 mgr.smithi046.lplrtl (mgr.14184) 1257 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:46.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:46 smithi046 bash[16275]: cluster 2024-02-23T00:53:45.290022+0000 mgr.smithi046.lplrtl (mgr.14184) 1258 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:46.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:46 smithi142 bash[20802]: audit 2024-02-23T00:53:44.999192+0000 mgr.smithi046.lplrtl (mgr.14184) 1257 : audit [DBG] from='client.15566 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:46.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:46 smithi142 bash[20802]: cluster 2024-02-23T00:53:45.290022+0000 mgr.smithi046.lplrtl (mgr.14184) 1258 : cluster [DBG] pgmap v825: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:48.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:48 smithi046 bash[16275]: cluster 2024-02-23T00:53:47.291559+0000 mgr.smithi046.lplrtl (mgr.14184) 1259 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:48.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:48 smithi142 bash[20802]: cluster 2024-02-23T00:53:47.291559+0000 mgr.smithi046.lplrtl (mgr.14184) 1259 : cluster [DBG] pgmap v826: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:49.698 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:49.698 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:50.288 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:50.557 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:50 smithi046 bash[16275]: cluster 2024-02-23T00:53:49.292549+0000 mgr.smithi046.lplrtl (mgr.14184) 1260 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:50.557 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:50 smithi046 bash[16275]: audit 2024-02-23T00:53:49.676375+0000 mgr.smithi046.lplrtl (mgr.14184) 1261 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:50.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:50 smithi142 bash[20802]: cluster 2024-02-23T00:53:49.292549+0000 mgr.smithi046.lplrtl (mgr.14184) 1260 : cluster [DBG] pgmap v827: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2024-02-23T00:53:50.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:50 smithi142 bash[20802]: audit 2024-02-23T00:53:49.676375+0000 mgr.smithi046.lplrtl (mgr.14184) 1261 : audit [DBG] from='client.15570 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:51.289 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:52.633 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:52 smithi046 bash[16275]: cluster 2024-02-23T00:53:51.294416+0000 mgr.smithi046.lplrtl (mgr.14184) 1262 : cluster [DBG] pgmap v828: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 596 B/s rd, 0 op/s 2024-02-23T00:53:52.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:52 smithi142 bash[20802]: cluster 2024-02-23T00:53:51.294416+0000 mgr.smithi046.lplrtl (mgr.14184) 1262 : cluster [DBG] pgmap v828: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 596 B/s rd, 0 op/s 2024-02-23T00:53:54.382 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:54.382 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:54.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:54 smithi046 bash[16275]: cluster 2024-02-23T00:53:53.295911+0000 mgr.smithi046.lplrtl (mgr.14184) 1263 : cluster [DBG] pgmap v829: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:54.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:54 smithi142 bash[20802]: cluster 2024-02-23T00:53:53.295911+0000 mgr.smithi046.lplrtl (mgr.14184) 1263 : cluster [DBG] pgmap v829: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:54.993 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:53:55.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:55 smithi046 bash[16275]: audit 2024-02-23T00:53:54.360469+0000 mgr.smithi046.lplrtl (mgr.14184) 1264 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:55.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:55 smithi142 bash[20802]: audit 2024-02-23T00:53:54.360469+0000 mgr.smithi046.lplrtl (mgr.14184) 1264 : audit [DBG] from='client.15574 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:53:55.994 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:53:56.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:56 smithi046 bash[16275]: cluster 2024-02-23T00:53:55.297972+0000 mgr.smithi046.lplrtl (mgr.14184) 1265 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:56.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:56 smithi142 bash[20802]: cluster 2024-02-23T00:53:55.297972+0000 mgr.smithi046.lplrtl (mgr.14184) 1265 : cluster [DBG] pgmap v830: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:58.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:53:58 smithi046 bash[16275]: cluster 2024-02-23T00:53:57.299413+0000 mgr.smithi046.lplrtl (mgr.14184) 1266 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:58.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:53:58 smithi142 bash[20802]: cluster 2024-02-23T00:53:57.299413+0000 mgr.smithi046.lplrtl (mgr.14184) 1266 : cluster [DBG] pgmap v831: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:53:59.057 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:53:59.057 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:53:59.658 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:00.659 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:00.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:00 smithi046 bash[16275]: audit 2024-02-23T00:53:59.035815+0000 mgr.smithi046.lplrtl (mgr.14184) 1267 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:00.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:00 smithi046 bash[16275]: cluster 2024-02-23T00:53:59.300818+0000 mgr.smithi046.lplrtl (mgr.14184) 1268 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:00.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:00 smithi142 bash[20802]: audit 2024-02-23T00:53:59.035815+0000 mgr.smithi046.lplrtl (mgr.14184) 1267 : audit [DBG] from='client.15578 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:00.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:00 smithi142 bash[20802]: cluster 2024-02-23T00:53:59.300818+0000 mgr.smithi046.lplrtl (mgr.14184) 1268 : cluster [DBG] pgmap v832: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:01.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:01 smithi142 bash[20802]: audit 2024-02-23T00:54:01.254883+0000 mon.smithi046 (mon.0) 971 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:54:01.790 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:01 smithi046 bash[16275]: audit 2024-02-23T00:54:01.254883+0000 mon.smithi046 (mon.0) 971 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:54:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: cluster 2024-02-23T00:54:01.302137+0000 mgr.smithi046.lplrtl (mgr.14184) 1269 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: audit 2024-02-23T00:54:01.564690+0000 mon.smithi046 (mon.0) 972 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:54:02.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: audit 2024-02-23T00:54:01.566104+0000 mon.smithi046 (mon.0) 973 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:54:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: audit 2024-02-23T00:54:01.573618+0000 mon.smithi046 (mon.0) 974 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: cluster 2024-02-23T00:54:01.574590+0000 mgr.smithi046.lplrtl (mgr.14184) 1270 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: audit 2024-02-23T00:54:01.582167+0000 mon.smithi046 (mon.0) 975 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:54:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: audit 2024-02-23T00:54:01.598924+0000 mon.smithi046 (mon.0) 976 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:02.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:02 smithi142 bash[20802]: cephadm 2024-02-23T00:54:01.603004+0000 mgr.smithi046.lplrtl (mgr.14184) 1271 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qfgefk on smithi142 2024-02-23T00:54:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: cluster 2024-02-23T00:54:01.302137+0000 mgr.smithi046.lplrtl (mgr.14184) 1269 : cluster [DBG] pgmap v833: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: audit 2024-02-23T00:54:01.564690+0000 mon.smithi046 (mon.0) 972 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:54:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: audit 2024-02-23T00:54:01.566104+0000 mon.smithi046 (mon.0) 973 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:54:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: audit 2024-02-23T00:54:01.573618+0000 mon.smithi046 (mon.0) 974 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: cluster 2024-02-23T00:54:01.574590+0000 mgr.smithi046.lplrtl (mgr.14184) 1270 : cluster [DBG] pgmap v834: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:02.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: audit 2024-02-23T00:54:01.582167+0000 mon.smithi046 (mon.0) 975 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:54:02.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: audit 2024-02-23T00:54:01.598924+0000 mon.smithi046 (mon.0) 976 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:02.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:02 smithi046 bash[16275]: cephadm 2024-02-23T00:54:01.603004+0000 mgr.smithi046.lplrtl (mgr.14184) 1271 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.qfgefk on smithi142 2024-02-23T00:54:03.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:03 smithi046 bash[16275]: cluster 2024-02-23T00:54:02.570892+0000 mon.smithi046 (mon.0) 977 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:54:03.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:03 smithi046 bash[16275]: cluster 2024-02-23T00:54:02.570945+0000 mon.smithi046 (mon.0) 978 : cluster [INF] Cluster is now healthy 2024-02-23T00:54:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:03 smithi142 bash[20802]: cluster 2024-02-23T00:54:02.570892+0000 mon.smithi046 (mon.0) 977 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:54:03.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:03 smithi142 bash[20802]: cluster 2024-02-23T00:54:02.570945+0000 mon.smithi046 (mon.0) 978 : cluster [INF] Cluster is now healthy 2024-02-23T00:54:03.766 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:03.766 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:51:52.696292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.wzpzgm on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:04.393 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:04.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:04 smithi046 bash[16275]: cluster 2024-02-23T00:54:03.575755+0000 mgr.smithi046.lplrtl (mgr.14184) 1272 : cluster [DBG] pgmap v835: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:04.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:04 smithi046 bash[16275]: audit 2024-02-23T00:54:03.753194+0000 mgr.smithi046.lplrtl (mgr.14184) 1273 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:04.987 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:04 smithi142 bash[20802]: cluster 2024-02-23T00:54:03.575755+0000 mgr.smithi046.lplrtl (mgr.14184) 1272 : cluster [DBG] pgmap v835: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:04.987 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:04 smithi142 bash[20802]: audit 2024-02-23T00:54:03.753194+0000 mgr.smithi046.lplrtl (mgr.14184) 1273 : audit [DBG] from='client.15582 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:05.394 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: audit 2024-02-23T00:54:05.343151+0000 mon.smithi046 (mon.0) 979 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: cephadm 2024-02-23T00:54:05.443061+0000 mgr.smithi046.lplrtl (mgr.14184) 1274 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.745 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: cephadm 2024-02-23T00:54:05.443560+0000 mgr.smithi046.lplrtl (mgr.14184) 1275 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: audit 2024-02-23T00:54:05.444193+0000 mon.smithi046 (mon.0) 980 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qfgefk"}]: dispatch 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: cephadm 2024-02-23T00:54:05.445745+0000 mgr.smithi046.lplrtl (mgr.14184) 1276 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:06.746 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: cephadm 2024-02-23T00:54:05.450661+0000 mgr.smithi046.lplrtl (mgr.14184) 1277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.pasewl on smithi046 2024-02-23T00:54:06.747 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:06 smithi046 bash[16275]: cluster 2024-02-23T00:54:05.577313+0000 mgr.smithi046.lplrtl (mgr.14184) 1278 : cluster [DBG] pgmap v836: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: audit 2024-02-23T00:54:05.343151+0000 mon.smithi046 (mon.0) 979 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: cephadm 2024-02-23T00:54:05.443061+0000 mgr.smithi046.lplrtl (mgr.14184) 1274 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: cephadm 2024-02-23T00:54:05.443560+0000 mgr.smithi046.lplrtl (mgr.14184) 1275 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: audit 2024-02-23T00:54:05.444193+0000 mon.smithi046 (mon.0) 980 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.qfgefk"}]: dispatch 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: cephadm 2024-02-23T00:54:05.445745+0000 mgr.smithi046.lplrtl (mgr.14184) 1276 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.qfgefk ... 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: cephadm 2024-02-23T00:54:05.450661+0000 mgr.smithi046.lplrtl (mgr.14184) 1277 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.pasewl on smithi046 2024-02-23T00:54:06.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:06 smithi142 bash[20802]: cluster 2024-02-23T00:54:05.577313+0000 mgr.smithi046.lplrtl (mgr.14184) 1278 : cluster [DBG] pgmap v836: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:08.492 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:08.492 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:52:56.856584Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.zroalo on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-zroalo\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.zroalo\nDeploy daemon haproxy.nfs.foo.smithi142.zroalo ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.246987Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.kontks on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-kontks\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.kontks\nDeploy daemon haproxy.nfs.foo.smithi046.kontks ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:53:01.249292Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.uafxio on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:08.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:08 smithi046 bash[16275]: cluster 2024-02-23T00:54:07.578652+0000 mgr.smithi046.lplrtl (mgr.14184) 1279 : cluster [DBG] pgmap v837: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:08 smithi142 bash[20802]: cluster 2024-02-23T00:54:07.578652+0000 mgr.smithi046.lplrtl (mgr.14184) 1279 : cluster [DBG] pgmap v837: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:54:09.078 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:09.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:09 smithi046 bash[16275]: audit 2024-02-23T00:54:08.471620+0000 mgr.smithi046.lplrtl (mgr.14184) 1280 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:09.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:09 smithi046 bash[16275]: audit 2024-02-23T00:54:09.410496+0000 mon.smithi046 (mon.0) 981 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.pasewl"}]: dispatch 2024-02-23T00:54:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:09 smithi142 bash[20802]: audit 2024-02-23T00:54:08.471620+0000 mgr.smithi046.lplrtl (mgr.14184) 1280 : audit [DBG] from='client.15586 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:09 smithi142 bash[20802]: audit 2024-02-23T00:54:09.410496+0000 mon.smithi046 (mon.0) 981 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.pasewl"}]: dispatch 2024-02-23T00:54:10.080 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cephadm 2024-02-23T00:54:09.409572+0000 mgr.smithi046.lplrtl (mgr.14184) 1281 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cephadm 2024-02-23T00:54:09.409871+0000 mgr.smithi046.lplrtl (mgr.14184) 1282 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cephadm 2024-02-23T00:54:09.411984+0000 mgr.smithi046.lplrtl (mgr.14184) 1283 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:10.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cephadm 2024-02-23T00:54:09.413851+0000 mgr.smithi046.lplrtl (mgr.14184) 1284 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cephadm 2024-02-23T00:54:09.415501+0000 mgr.smithi046.lplrtl (mgr.14184) 1285 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cluster 2024-02-23T00:54:09.417273+0000 mgr.smithi046.lplrtl (mgr.14184) 1286 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:54:10.995 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:10 smithi046 bash[16275]: cluster 2024-02-23T00:54:09.637086+0000 mon.smithi046 (mon.0) 982 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cephadm 2024-02-23T00:54:09.409572+0000 mgr.smithi046.lplrtl (mgr.14184) 1281 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:11.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cephadm 2024-02-23T00:54:09.409871+0000 mgr.smithi046.lplrtl (mgr.14184) 1282 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cephadm 2024-02-23T00:54:09.411984+0000 mgr.smithi046.lplrtl (mgr.14184) 1283 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.pasewl ... 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:54:11.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cephadm 2024-02-23T00:54:09.413851+0000 mgr.smithi046.lplrtl (mgr.14184) 1284 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cephadm 2024-02-23T00:54:09.415501+0000 mgr.smithi046.lplrtl (mgr.14184) 1285 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cluster 2024-02-23T00:54:09.417273+0000 mgr.smithi046.lplrtl (mgr.14184) 1286 : cluster [DBG] pgmap v838: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:54:11.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:10 smithi142 bash[20802]: cluster 2024-02-23T00:54:09.637086+0000 mon.smithi046 (mon.0) 982 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:54:12.959 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:12 smithi046 bash[16275]: cluster 2024-02-23T00:54:11.419007+0000 mgr.smithi046.lplrtl (mgr.14184) 1287 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:54:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:12 smithi142 bash[20802]: cluster 2024-02-23T00:54:11.419007+0000 mgr.smithi046.lplrtl (mgr.14184) 1287 : cluster [DBG] pgmap v839: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:54:13.326 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:13.327 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:13.944 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:14.945 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:14.959 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:14 smithi046 bash[16275]: audit 2024-02-23T00:54:13.309223+0000 mgr.smithi046.lplrtl (mgr.14184) 1288 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:14.960 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:14 smithi046 bash[16275]: cluster 2024-02-23T00:54:13.420562+0000 mgr.smithi046.lplrtl (mgr.14184) 1289 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:14.960 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:14 smithi046 bash[16275]: audit 2024-02-23T00:54:14.318959+0000 mon.smithi046 (mon.0) 983 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:14 smithi142 bash[20802]: audit 2024-02-23T00:54:13.309223+0000 mgr.smithi046.lplrtl (mgr.14184) 1288 : audit [DBG] from='client.15590 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:14 smithi142 bash[20802]: cluster 2024-02-23T00:54:13.420562+0000 mgr.smithi046.lplrtl (mgr.14184) 1289 : cluster [DBG] pgmap v840: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:15.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:14 smithi142 bash[20802]: audit 2024-02-23T00:54:14.318959+0000 mon.smithi046 (mon.0) 983 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:16.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:16 smithi046 bash[16275]: cluster 2024-02-23T00:54:15.422643+0000 mgr.smithi046.lplrtl (mgr.14184) 1290 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:16 smithi142 bash[20802]: cluster 2024-02-23T00:54:15.422643+0000 mgr.smithi046.lplrtl (mgr.14184) 1290 : cluster [DBG] pgmap v841: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:18.094 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:18.094 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:18.705 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:18 smithi046 bash[16275]: cluster 2024-02-23T00:54:17.424140+0000 mgr.smithi046.lplrtl (mgr.14184) 1291 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:19.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:18 smithi142 bash[20802]: cluster 2024-02-23T00:54:17.424140+0000 mgr.smithi046.lplrtl (mgr.14184) 1291 : cluster [DBG] pgmap v842: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:19.706 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:19.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:19 smithi046 bash[16275]: audit 2024-02-23T00:54:18.076130+0000 mgr.smithi046.lplrtl (mgr.14184) 1292 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:19 smithi142 bash[20802]: audit 2024-02-23T00:54:18.076130+0000 mgr.smithi046.lplrtl (mgr.14184) 1292 : audit [DBG] from='client.15594 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:20.909 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:20 smithi046 bash[16275]: cluster 2024-02-23T00:54:19.425715+0000 mgr.smithi046.lplrtl (mgr.14184) 1293 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:20.909 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:20 smithi046 bash[16275]: audit 2024-02-23T00:54:20.343407+0000 mon.smithi046 (mon.0) 984 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:20 smithi142 bash[20802]: cluster 2024-02-23T00:54:19.425715+0000 mgr.smithi046.lplrtl (mgr.14184) 1293 : cluster [DBG] pgmap v843: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:54:21.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:20 smithi142 bash[20802]: audit 2024-02-23T00:54:20.343407+0000 mon.smithi046 (mon.0) 984 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:54:22.852 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:22.852 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:22.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:22 smithi046 bash[16275]: cluster 2024-02-23T00:54:21.427536+0000 mgr.smithi046.lplrtl (mgr.14184) 1294 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:22 smithi142 bash[20802]: cluster 2024-02-23T00:54:21.427536+0000 mgr.smithi046.lplrtl (mgr.14184) 1294 : cluster [DBG] pgmap v844: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:23.470 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:24.471 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:24.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:24 smithi046 bash[16275]: audit 2024-02-23T00:54:22.832767+0000 mgr.smithi046.lplrtl (mgr.14184) 1295 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:24.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:24 smithi046 bash[16275]: cluster 2024-02-23T00:54:23.429189+0000 mgr.smithi046.lplrtl (mgr.14184) 1296 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:24 smithi142 bash[20802]: audit 2024-02-23T00:54:22.832767+0000 mgr.smithi046.lplrtl (mgr.14184) 1295 : audit [DBG] from='client.15598 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:24 smithi142 bash[20802]: cluster 2024-02-23T00:54:23.429189+0000 mgr.smithi046.lplrtl (mgr.14184) 1296 : cluster [DBG] pgmap v845: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:26.974 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:26 smithi046 bash[16275]: cluster 2024-02-23T00:54:25.431365+0000 mgr.smithi046.lplrtl (mgr.14184) 1297 : cluster [DBG] pgmap v846: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:27.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:26 smithi142 bash[20802]: cluster 2024-02-23T00:54:25.431365+0000 mgr.smithi046.lplrtl (mgr.14184) 1297 : cluster [DBG] pgmap v846: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:27.344 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:27.344 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:27.929 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:28.931 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:28.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:28 smithi046 bash[16275]: audit 2024-02-23T00:54:27.323620+0000 mgr.smithi046.lplrtl (mgr.14184) 1298 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:28.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:28 smithi046 bash[16275]: cluster 2024-02-23T00:54:27.432532+0000 mgr.smithi046.lplrtl (mgr.14184) 1299 : cluster [DBG] pgmap v847: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:28 smithi142 bash[20802]: audit 2024-02-23T00:54:27.323620+0000 mgr.smithi046.lplrtl (mgr.14184) 1298 : audit [DBG] from='client.15602 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:28 smithi142 bash[20802]: cluster 2024-02-23T00:54:27.432532+0000 mgr.smithi046.lplrtl (mgr.14184) 1299 : cluster [DBG] pgmap v847: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:30.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:30 smithi046 bash[16275]: cluster 2024-02-23T00:54:29.434175+0000 mgr.smithi046.lplrtl (mgr.14184) 1300 : cluster [DBG] pgmap v848: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:31.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:30 smithi142 bash[20802]: cluster 2024-02-23T00:54:29.434175+0000 mgr.smithi046.lplrtl (mgr.14184) 1300 : cluster [DBG] pgmap v848: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:32.018 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:32.018 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:32.635 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:32.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:32 smithi046 bash[16275]: cluster 2024-02-23T00:54:31.435955+0000 mgr.smithi046.lplrtl (mgr.14184) 1301 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:32 smithi142 bash[20802]: cluster 2024-02-23T00:54:31.435955+0000 mgr.smithi046.lplrtl (mgr.14184) 1301 : cluster [DBG] pgmap v849: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:33.636 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:33.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:33 smithi046 bash[16275]: audit 2024-02-23T00:54:31.997370+0000 mgr.smithi046.lplrtl (mgr.14184) 1302 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:34.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:33 smithi142 bash[20802]: audit 2024-02-23T00:54:31.997370+0000 mgr.smithi046.lplrtl (mgr.14184) 1302 : audit [DBG] from='client.15606 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:34 smithi142 bash[20802]: cluster 2024-02-23T00:54:33.437530+0000 mgr.smithi046.lplrtl (mgr.14184) 1303 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:35.023 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:34 smithi046 bash[16275]: cluster 2024-02-23T00:54:33.437530+0000 mgr.smithi046.lplrtl (mgr.14184) 1303 : cluster [DBG] pgmap v850: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:36.749 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:36.749 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:37.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:36 smithi142 bash[20802]: cluster 2024-02-23T00:54:35.439673+0000 mgr.smithi046.lplrtl (mgr.14184) 1304 : cluster [DBG] pgmap v851: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:37.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:36 smithi046 bash[16275]: cluster 2024-02-23T00:54:35.439673+0000 mgr.smithi046.lplrtl (mgr.14184) 1304 : cluster [DBG] pgmap v851: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:37.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:38.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:37 smithi046 bash[16275]: audit 2024-02-23T00:54:36.727266+0000 mgr.smithi046.lplrtl (mgr.14184) 1305 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:38.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:37 smithi142 bash[20802]: audit 2024-02-23T00:54:36.727266+0000 mgr.smithi046.lplrtl (mgr.14184) 1305 : audit [DBG] from='client.15610 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:38.399 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:39.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:38 smithi046 bash[16275]: cluster 2024-02-23T00:54:37.441164+0000 mgr.smithi046.lplrtl (mgr.14184) 1306 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:39.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:38 smithi142 bash[20802]: cluster 2024-02-23T00:54:37.441164+0000 mgr.smithi046.lplrtl (mgr.14184) 1306 : cluster [DBG] pgmap v852: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:40.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:40 smithi046 bash[16275]: cluster 2024-02-23T00:54:39.442784+0000 mgr.smithi046.lplrtl (mgr.14184) 1307 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:41.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:40 smithi142 bash[20802]: cluster 2024-02-23T00:54:39.442784+0000 mgr.smithi046.lplrtl (mgr.14184) 1307 : cluster [DBG] pgmap v853: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:41.592 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:41.592 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:42.201 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:43.202 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:43.215 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:42 smithi046 bash[16275]: cluster 2024-02-23T00:54:41.444427+0000 mgr.smithi046.lplrtl (mgr.14184) 1308 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:43.215 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:42 smithi046 bash[16275]: audit 2024-02-23T00:54:41.579135+0000 mgr.smithi046.lplrtl (mgr.14184) 1309 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:43.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:42 smithi142 bash[20802]: cluster 2024-02-23T00:54:41.444427+0000 mgr.smithi046.lplrtl (mgr.14184) 1308 : cluster [DBG] pgmap v854: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:43.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:42 smithi142 bash[20802]: audit 2024-02-23T00:54:41.579135+0000 mgr.smithi046.lplrtl (mgr.14184) 1309 : audit [DBG] from='client.15614 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:45.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:44 smithi046 bash[16275]: cluster 2024-02-23T00:54:43.445793+0000 mgr.smithi046.lplrtl (mgr.14184) 1310 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:44 smithi142 bash[20802]: cluster 2024-02-23T00:54:43.445793+0000 mgr.smithi046.lplrtl (mgr.14184) 1310 : cluster [DBG] pgmap v855: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:46.278 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:46.278 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:46.814 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:47.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:46 smithi046 bash[16275]: cluster 2024-02-23T00:54:45.447852+0000 mgr.smithi046.lplrtl (mgr.14184) 1311 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:47.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:46 smithi142 bash[20802]: cluster 2024-02-23T00:54:45.447852+0000 mgr.smithi046.lplrtl (mgr.14184) 1311 : cluster [DBG] pgmap v856: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:47.816 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:48.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:47 smithi046 bash[16275]: audit 2024-02-23T00:54:46.257383+0000 mgr.smithi046.lplrtl (mgr.14184) 1312 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:48.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:47 smithi142 bash[20802]: audit 2024-02-23T00:54:46.257383+0000 mgr.smithi046.lplrtl (mgr.14184) 1312 : audit [DBG] from='client.15618 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:49.084 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:48 smithi046 bash[16275]: cluster 2024-02-23T00:54:47.449278+0000 mgr.smithi046.lplrtl (mgr.14184) 1313 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:49.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:48 smithi142 bash[20802]: cluster 2024-02-23T00:54:47.449278+0000 mgr.smithi046.lplrtl (mgr.14184) 1313 : cluster [DBG] pgmap v857: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:50.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:49 smithi046 bash[16275]: cluster 2024-02-23T00:54:49.450945+0000 mgr.smithi046.lplrtl (mgr.14184) 1314 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:50.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:49 smithi142 bash[20802]: cluster 2024-02-23T00:54:49.450945+0000 mgr.smithi046.lplrtl (mgr.14184) 1314 : cluster [DBG] pgmap v858: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:50.843 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:50.843 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:51.445 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:52.446 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:52.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:52 smithi046 bash[16275]: audit 2024-02-23T00:54:50.829784+0000 mgr.smithi046.lplrtl (mgr.14184) 1315 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:52.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:52 smithi046 bash[16275]: cluster 2024-02-23T00:54:51.452642+0000 mgr.smithi046.lplrtl (mgr.14184) 1316 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:52 smithi142 bash[20802]: audit 2024-02-23T00:54:50.829784+0000 mgr.smithi046.lplrtl (mgr.14184) 1315 : audit [DBG] from='client.15622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:53.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:52 smithi142 bash[20802]: cluster 2024-02-23T00:54:51.452642+0000 mgr.smithi046.lplrtl (mgr.14184) 1316 : cluster [DBG] pgmap v859: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:54:54.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:54 smithi046 bash[16275]: cluster 2024-02-23T00:54:53.454212+0000 mgr.smithi046.lplrtl (mgr.14184) 1317 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:54 smithi142 bash[20802]: cluster 2024-02-23T00:54:53.454212+0000 mgr.smithi046.lplrtl (mgr.14184) 1317 : cluster [DBG] pgmap v860: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:55.535 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:54:55.535 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:54:56.107 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:54:56.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:56 smithi046 bash[16275]: cluster 2024-02-23T00:54:55.456240+0000 mgr.smithi046.lplrtl (mgr.14184) 1318 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:56.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:56 smithi046 bash[16275]: audit 2024-02-23T00:54:55.520368+0000 mgr.smithi046.lplrtl (mgr.14184) 1319 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:56 smithi142 bash[20802]: cluster 2024-02-23T00:54:55.456240+0000 mgr.smithi046.lplrtl (mgr.14184) 1318 : cluster [DBG] pgmap v861: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:54:57.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:56 smithi142 bash[20802]: audit 2024-02-23T00:54:55.520368+0000 mgr.smithi046.lplrtl (mgr.14184) 1319 : audit [DBG] from='client.15626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:54:57.107 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:54:58.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:54:58 smithi046 bash[16275]: cluster 2024-02-23T00:54:57.457789+0000 mgr.smithi046.lplrtl (mgr.14184) 1320 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 0 B/s wr, 5 op/s 2024-02-23T00:54:59.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:54:58 smithi142 bash[20802]: cluster 2024-02-23T00:54:57.457789+0000 mgr.smithi046.lplrtl (mgr.14184) 1320 : cluster [DBG] pgmap v862: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.1 KiB/s rd, 0 B/s wr, 5 op/s 2024-02-23T00:55:00.223 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:00.223 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:00.828 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:00 smithi046 bash[16275]: cluster 2024-02-23T00:54:59.459473+0000 mgr.smithi046.lplrtl (mgr.14184) 1321 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 32 op/s 2024-02-23T00:55:00.829 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:00.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:00 smithi142 bash[20802]: cluster 2024-02-23T00:54:59.459473+0000 mgr.smithi046.lplrtl (mgr.14184) 1321 : cluster [DBG] pgmap v863: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 20 KiB/s rd, 0 B/s wr, 32 op/s 2024-02-23T00:55:01.820 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:01 smithi142 bash[20802]: audit 2024-02-23T00:55:00.205080+0000 mgr.smithi046.lplrtl (mgr.14184) 1322 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:01.830 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:01.842 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:01 smithi046 bash[16275]: audit 2024-02-23T00:55:00.205080+0000 mgr.smithi046.lplrtl (mgr.14184) 1322 : audit [DBG] from='client.15630 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:02.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:02 smithi046 bash[16275]: cluster 2024-02-23T00:55:01.461269+0000 mgr.smithi046.lplrtl (mgr.14184) 1323 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:03.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:02 smithi142 bash[20802]: cluster 2024-02-23T00:55:01.461269+0000 mgr.smithi046.lplrtl (mgr.14184) 1323 : cluster [DBG] pgmap v864: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:04.967 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:04.967 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:04.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:04 smithi046 bash[16275]: cluster 2024-02-23T00:55:03.462983+0000 mgr.smithi046.lplrtl (mgr.14184) 1324 : cluster [DBG] pgmap v865: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:04 smithi142 bash[20802]: cluster 2024-02-23T00:55:03.462983+0000 mgr.smithi046.lplrtl (mgr.14184) 1324 : cluster [DBG] pgmap v865: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:05.545 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:06.546 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:06.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:06 smithi046 bash[16275]: audit 2024-02-23T00:55:04.945693+0000 mgr.smithi046.lplrtl (mgr.14184) 1325 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:06.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:06 smithi046 bash[16275]: cluster 2024-02-23T00:55:05.464981+0000 mgr.smithi046.lplrtl (mgr.14184) 1326 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:06 smithi142 bash[20802]: audit 2024-02-23T00:55:04.945693+0000 mgr.smithi046.lplrtl (mgr.14184) 1325 : audit [DBG] from='client.15634 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:07.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:06 smithi142 bash[20802]: cluster 2024-02-23T00:55:05.464981+0000 mgr.smithi046.lplrtl (mgr.14184) 1326 : cluster [DBG] pgmap v866: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:08.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:08 smithi046 bash[16275]: cluster 2024-02-23T00:55:07.466408+0000 mgr.smithi046.lplrtl (mgr.14184) 1327 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:09.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:08 smithi142 bash[20802]: cluster 2024-02-23T00:55:07.466408+0000 mgr.smithi046.lplrtl (mgr.14184) 1327 : cluster [DBG] pgmap v867: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 60 op/s 2024-02-23T00:55:09.634 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:09.634 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:53:01.251256Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.pqmsxg on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:09.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:09 smithi046 bash[16275]: audit 2024-02-23T00:55:09.422686+0000 mon.smithi046 (mon.0) 985 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:55:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:09 smithi142 bash[20802]: audit 2024-02-23T00:55:09.422686+0000 mon.smithi046 (mon.0) 985 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:55:10.205 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:10.856 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: cluster 2024-02-23T00:55:09.467515+0000 mgr.smithi046.lplrtl (mgr.14184) 1328 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 33 KiB/s rd, 0 B/s wr, 55 op/s 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.619487+0000 mgr.smithi046.lplrtl (mgr.14184) 1329 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.741368+0000 mon.smithi046 (mon.0) 986 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.742723+0000 mon.smithi046 (mon.0) 987 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.749778+0000 mon.smithi046 (mon.0) 988 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: cluster 2024-02-23T00:55:09.751041+0000 mgr.smithi046.lplrtl (mgr.14184) 1330 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 19 KiB/s rd, 0 B/s wr, 32 op/s 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.755447+0000 mon.smithi046 (mon.0) 989 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: audit 2024-02-23T00:55:09.772308+0000 mon.smithi046 (mon.0) 990 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:10.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:10 smithi142 bash[20802]: cephadm 2024-02-23T00:55:09.775337+0000 mgr.smithi046.lplrtl (mgr.14184) 1331 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.aiujpy on smithi142 2024-02-23T00:55:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: cluster 2024-02-23T00:55:09.467515+0000 mgr.smithi046.lplrtl (mgr.14184) 1328 : cluster [DBG] pgmap v868: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 33 KiB/s rd, 0 B/s wr, 55 op/s 2024-02-23T00:55:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.619487+0000 mgr.smithi046.lplrtl (mgr.14184) 1329 : audit [DBG] from='client.15638 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.741368+0000 mon.smithi046 (mon.0) 986 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:55:10.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.742723+0000 mon.smithi046 (mon.0) 987 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:55:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.749778+0000 mon.smithi046 (mon.0) 988 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: cluster 2024-02-23T00:55:09.751041+0000 mgr.smithi046.lplrtl (mgr.14184) 1330 : cluster [DBG] pgmap v869: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 19 KiB/s rd, 0 B/s wr, 32 op/s 2024-02-23T00:55:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.755447+0000 mon.smithi046 (mon.0) 989 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:55:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: audit 2024-02-23T00:55:09.772308+0000 mon.smithi046 (mon.0) 990 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:10.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:10 smithi046 bash[16275]: cephadm 2024-02-23T00:55:09.775337+0000 mgr.smithi046.lplrtl (mgr.14184) 1331 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.aiujpy on smithi142 2024-02-23T00:55:11.206 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:11.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:11 smithi046 bash[16275]: cluster 2024-02-23T00:55:10.746983+0000 mon.smithi046 (mon.0) 991 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:55:11.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:11 smithi046 bash[16275]: cluster 2024-02-23T00:55:10.747055+0000 mon.smithi046 (mon.0) 992 : cluster [INF] Cluster is now healthy 2024-02-23T00:55:12.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:11 smithi142 bash[20802]: cluster 2024-02-23T00:55:10.746983+0000 mon.smithi046 (mon.0) 991 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:55:12.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:11 smithi142 bash[20802]: cluster 2024-02-23T00:55:10.747055+0000 mon.smithi046 (mon.0) 992 : cluster [INF] Cluster is now healthy 2024-02-23T00:55:12.674 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:12 smithi046 bash[16275]: cluster 2024-02-23T00:55:11.752165+0000 mgr.smithi046.lplrtl (mgr.14184) 1332 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:12 smithi142 bash[20802]: cluster 2024-02-23T00:55:11.752165+0000 mgr.smithi046.lplrtl (mgr.14184) 1332 : cluster [DBG] pgmap v870: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:13.876 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:13 smithi046 bash[16275]: audit 2024-02-23T00:55:13.607099+0000 mon.smithi046 (mon.0) 993 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.aiujpy"}]: dispatch 2024-02-23T00:55:14.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:13 smithi142 bash[20802]: audit 2024-02-23T00:55:13.607099+0000 mon.smithi046 (mon.0) 993 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.aiujpy"}]: dispatch 2024-02-23T00:55:14.285 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:14.285 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:05.445489Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.qfgefk on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-qfgefk\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.qfgefk\nDeploy daemon haproxy.nfs.foo.smithi142.qfgefk ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.411766Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.pasewl on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-pasewl\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.pasewl\nDeploy daemon haproxy.nfs.foo.smithi046.pasewl ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:54:09.413738Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.vwbygf on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:14.901 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: cephadm 2024-02-23T00:55:13.605764+0000 mgr.smithi046.lplrtl (mgr.14184) 1333 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: cephadm 2024-02-23T00:55:13.606332+0000 mgr.smithi046.lplrtl (mgr.14184) 1334 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: cephadm 2024-02-23T00:55:13.608786+0000 mgr.smithi046.lplrtl (mgr.14184) 1335 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:14.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: cephadm 2024-02-23T00:55:13.614135+0000 mgr.smithi046.lplrtl (mgr.14184) 1336 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.xmmodw on smithi046 2024-02-23T00:55:14.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:14 smithi046 bash[16275]: cluster 2024-02-23T00:55:13.753292+0000 mgr.smithi046.lplrtl (mgr.14184) 1337 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: cephadm 2024-02-23T00:55:13.605764+0000 mgr.smithi046.lplrtl (mgr.14184) 1333 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: cephadm 2024-02-23T00:55:13.606332+0000 mgr.smithi046.lplrtl (mgr.14184) 1334 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: cephadm 2024-02-23T00:55:13.608786+0000 mgr.smithi046.lplrtl (mgr.14184) 1335 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:15.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.aiujpy ... 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: cephadm 2024-02-23T00:55:13.614135+0000 mgr.smithi046.lplrtl (mgr.14184) 1336 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.xmmodw on smithi046 2024-02-23T00:55:15.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:14 smithi142 bash[20802]: cluster 2024-02-23T00:55:13.753292+0000 mgr.smithi046.lplrtl (mgr.14184) 1337 : cluster [DBG] pgmap v871: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:15.901 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:15.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:15 smithi046 bash[16275]: audit 2024-02-23T00:55:14.266191+0000 mgr.smithi046.lplrtl (mgr.14184) 1338 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:15 smithi142 bash[20802]: audit 2024-02-23T00:55:14.266191+0000 mgr.smithi046.lplrtl (mgr.14184) 1338 : audit [DBG] from='client.15642 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:16.986 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:16 smithi046 bash[16275]: cluster 2024-02-23T00:55:15.754929+0000 mgr.smithi046.lplrtl (mgr.14184) 1339 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:16 smithi142 bash[20802]: cluster 2024-02-23T00:55:15.754929+0000 mgr.smithi046.lplrtl (mgr.14184) 1339 : cluster [DBG] pgmap v872: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:55:17.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:17 smithi046 bash[16275]: audit 2024-02-23T00:55:17.668531+0000 mon.smithi046 (mon.0) 994 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.xmmodw"}]: dispatch 2024-02-23T00:55:18.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:17 smithi142 bash[20802]: audit 2024-02-23T00:55:17.668531+0000 mon.smithi046 (mon.0) 994 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.xmmodw"}]: dispatch 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cephadm 2024-02-23T00:55:17.667473+0000 mgr.smithi046.lplrtl (mgr.14184) 1340 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.991 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cephadm 2024-02-23T00:55:17.667973+0000 mgr.smithi046.lplrtl (mgr.14184) 1341 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cephadm 2024-02-23T00:55:17.669744+0000 mgr.smithi046.lplrtl (mgr.14184) 1342 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:18.993 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cephadm 2024-02-23T00:55:17.672596+0000 mgr.smithi046.lplrtl (mgr.14184) 1343 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cephadm 2024-02-23T00:55:17.675367+0000 mgr.smithi046.lplrtl (mgr.14184) 1344 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cluster 2024-02-23T00:55:17.677024+0000 mgr.smithi046.lplrtl (mgr.14184) 1345 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:55:18.994 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:18 smithi046 bash[16275]: cluster 2024-02-23T00:55:17.685517+0000 mon.smithi046 (mon.0) 995 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:55:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cephadm 2024-02-23T00:55:17.667473+0000 mgr.smithi046.lplrtl (mgr.14184) 1340 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.010 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cephadm 2024-02-23T00:55:17.667973+0000 mgr.smithi046.lplrtl (mgr.14184) 1341 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cephadm 2024-02-23T00:55:17.669744+0000 mgr.smithi046.lplrtl (mgr.14184) 1342 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw 2024-02-23T00:55:19.011 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.xmmodw ... 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cephadm 2024-02-23T00:55:17.672596+0000 mgr.smithi046.lplrtl (mgr.14184) 1343 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cephadm 2024-02-23T00:55:17.675367+0000 mgr.smithi046.lplrtl (mgr.14184) 1344 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cluster 2024-02-23T00:55:17.677024+0000 mgr.smithi046.lplrtl (mgr.14184) 1345 : cluster [DBG] pgmap v873: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2024-02-23T00:55:19.012 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:18 smithi142 bash[20802]: cluster 2024-02-23T00:55:17.685517+0000 mon.smithi046 (mon.0) 995 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:55:19.013 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:19.013 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:19.662 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:20.663 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:20.677 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:20 smithi046 bash[16275]: audit 2024-02-23T00:55:18.991539+0000 mgr.smithi046.lplrtl (mgr.14184) 1346 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:20.677 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:20 smithi046 bash[16275]: audit 2024-02-23T00:55:19.375102+0000 mon.smithi046 (mon.0) 996 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:20.677 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:20 smithi046 bash[16275]: cluster 2024-02-23T00:55:19.679104+0000 mgr.smithi046.lplrtl (mgr.14184) 1347 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2024-02-23T00:55:20.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:20 smithi142 bash[20802]: audit 2024-02-23T00:55:18.991539+0000 mgr.smithi046.lplrtl (mgr.14184) 1346 : audit [DBG] from='client.15646 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:20.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:20 smithi142 bash[20802]: audit 2024-02-23T00:55:19.375102+0000 mon.smithi046 (mon.0) 996 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:55:20.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:20 smithi142 bash[20802]: cluster 2024-02-23T00:55:19.679104+0000 mgr.smithi046.lplrtl (mgr.14184) 1347 : cluster [DBG] pgmap v874: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 200 B/s rd, 0 op/s 2024-02-23T00:55:23.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:22 smithi142 bash[20802]: cluster 2024-02-23T00:55:21.680406+0000 mgr.smithi046.lplrtl (mgr.14184) 1348 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:23.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:22 smithi046 bash[16275]: cluster 2024-02-23T00:55:21.680406+0000 mgr.smithi046.lplrtl (mgr.14184) 1348 : cluster [DBG] pgmap v875: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:23.761 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:23.761 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:24.361 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:24 smithi142 bash[20802]: cluster 2024-02-23T00:55:23.681865+0000 mgr.smithi046.lplrtl (mgr.14184) 1349 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:24 smithi142 bash[20802]: audit 2024-02-23T00:55:23.743575+0000 mgr.smithi046.lplrtl (mgr.14184) 1350 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:25.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:24 smithi046 bash[16275]: cluster 2024-02-23T00:55:23.681865+0000 mgr.smithi046.lplrtl (mgr.14184) 1349 : cluster [DBG] pgmap v876: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:25.244 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:24 smithi046 bash[16275]: audit 2024-02-23T00:55:23.743575+0000 mgr.smithi046.lplrtl (mgr.14184) 1350 : audit [DBG] from='client.15650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:25.363 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:27.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:26 smithi046 bash[16275]: cluster 2024-02-23T00:55:25.683803+0000 mgr.smithi046.lplrtl (mgr.14184) 1351 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:27.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:26 smithi142 bash[20802]: cluster 2024-02-23T00:55:25.683803+0000 mgr.smithi046.lplrtl (mgr.14184) 1351 : cluster [DBG] pgmap v877: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:28.398 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:28.398 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:29.011 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:29.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:28 smithi046 bash[16275]: cluster 2024-02-23T00:55:27.685495+0000 mgr.smithi046.lplrtl (mgr.14184) 1352 : cluster [DBG] pgmap v878: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:29.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:28 smithi142 bash[20802]: cluster 2024-02-23T00:55:27.685495+0000 mgr.smithi046.lplrtl (mgr.14184) 1352 : cluster [DBG] pgmap v878: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:30.012 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:30.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:29 smithi046 bash[16275]: audit 2024-02-23T00:55:28.375892+0000 mgr.smithi046.lplrtl (mgr.14184) 1353 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:30.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:29 smithi142 bash[20802]: audit 2024-02-23T00:55:28.375892+0000 mgr.smithi046.lplrtl (mgr.14184) 1353 : audit [DBG] from='client.15654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:30.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:30 smithi046 bash[16275]: cluster 2024-02-23T00:55:29.687556+0000 mgr.smithi046.lplrtl (mgr.14184) 1354 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:55:31.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:30 smithi142 bash[20802]: cluster 2024-02-23T00:55:29.687556+0000 mgr.smithi046.lplrtl (mgr.14184) 1354 : cluster [DBG] pgmap v879: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:55:32.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:32 smithi046 bash[16275]: cluster 2024-02-23T00:55:31.688829+0000 mgr.smithi046.lplrtl (mgr.14184) 1355 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:33.104 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:33.104 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:33.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:32 smithi142 bash[20802]: cluster 2024-02-23T00:55:31.688829+0000 mgr.smithi046.lplrtl (mgr.14184) 1355 : cluster [DBG] pgmap v880: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:33.720 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:34.721 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:34.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:34 smithi046 bash[16275]: audit 2024-02-23T00:55:33.086234+0000 mgr.smithi046.lplrtl (mgr.14184) 1356 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:34.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:34 smithi046 bash[16275]: cluster 2024-02-23T00:55:33.690023+0000 mgr.smithi046.lplrtl (mgr.14184) 1357 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:35.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:34 smithi142 bash[20802]: audit 2024-02-23T00:55:33.086234+0000 mgr.smithi046.lplrtl (mgr.14184) 1356 : audit [DBG] from='client.15658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:35.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:34 smithi142 bash[20802]: cluster 2024-02-23T00:55:33.690023+0000 mgr.smithi046.lplrtl (mgr.14184) 1357 : cluster [DBG] pgmap v881: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:36.048 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:35 smithi046 bash[16275]: cluster 2024-02-23T00:55:35.691265+0000 mgr.smithi046.lplrtl (mgr.14184) 1358 : cluster [DBG] pgmap v882: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:36.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:35 smithi142 bash[20802]: cluster 2024-02-23T00:55:35.691265+0000 mgr.smithi046.lplrtl (mgr.14184) 1358 : cluster [DBG] pgmap v882: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:37.684 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:37.684 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:38.284 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:39.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:38 smithi046 bash[16275]: audit 2024-02-23T00:55:37.670979+0000 mgr.smithi046.lplrtl (mgr.14184) 1359 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:39.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:38 smithi046 bash[16275]: cluster 2024-02-23T00:55:37.692762+0000 mgr.smithi046.lplrtl (mgr.14184) 1360 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 0 B/s wr, 1 op/s 2024-02-23T00:55:39.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:38 smithi142 bash[20802]: audit 2024-02-23T00:55:37.670979+0000 mgr.smithi046.lplrtl (mgr.14184) 1359 : audit [DBG] from='client.15662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:39.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:38 smithi142 bash[20802]: cluster 2024-02-23T00:55:37.692762+0000 mgr.smithi046.lplrtl (mgr.14184) 1360 : cluster [DBG] pgmap v883: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 0 B/s wr, 1 op/s 2024-02-23T00:55:39.285 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:40.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:40 smithi046 bash[16275]: cluster 2024-02-23T00:55:39.694722+0000 mgr.smithi046.lplrtl (mgr.14184) 1361 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:41.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:40 smithi142 bash[20802]: cluster 2024-02-23T00:55:39.694722+0000 mgr.smithi046.lplrtl (mgr.14184) 1361 : cluster [DBG] pgmap v884: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.2 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:42.425 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:42.425 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:43.072 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:42 smithi046 bash[16275]: cluster 2024-02-23T00:55:41.695988+0000 mgr.smithi046.lplrtl (mgr.14184) 1362 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:43.073 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:43.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:42 smithi142 bash[20802]: cluster 2024-02-23T00:55:41.695988+0000 mgr.smithi046.lplrtl (mgr.14184) 1362 : cluster [DBG] pgmap v885: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:44.074 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:44.087 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:43 smithi046 bash[16275]: audit 2024-02-23T00:55:42.407686+0000 mgr.smithi046.lplrtl (mgr.14184) 1363 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:44.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:43 smithi142 bash[20802]: audit 2024-02-23T00:55:42.407686+0000 mgr.smithi046.lplrtl (mgr.14184) 1363 : audit [DBG] from='client.15666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:45.158 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:44 smithi046 bash[16275]: cluster 2024-02-23T00:55:43.697636+0000 mgr.smithi046.lplrtl (mgr.14184) 1364 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:45.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:44 smithi142 bash[20802]: cluster 2024-02-23T00:55:43.697636+0000 mgr.smithi046.lplrtl (mgr.14184) 1364 : cluster [DBG] pgmap v886: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:47.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:46 smithi046 bash[16275]: cluster 2024-02-23T00:55:45.699619+0000 mgr.smithi046.lplrtl (mgr.14184) 1365 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:47.245 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:47.245 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:47.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:46 smithi142 bash[20802]: cluster 2024-02-23T00:55:45.699619+0000 mgr.smithi046.lplrtl (mgr.14184) 1365 : cluster [DBG] pgmap v887: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:47.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:48.898 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:49.246 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:48 smithi046 bash[16275]: audit 2024-02-23T00:55:47.227818+0000 mgr.smithi046.lplrtl (mgr.14184) 1366 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:49.246 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:48 smithi046 bash[16275]: cluster 2024-02-23T00:55:47.701196+0000 mgr.smithi046.lplrtl (mgr.14184) 1367 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:49.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:48 smithi142 bash[20802]: audit 2024-02-23T00:55:47.227818+0000 mgr.smithi046.lplrtl (mgr.14184) 1366 : audit [DBG] from='client.15670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:48 smithi142 bash[20802]: cluster 2024-02-23T00:55:47.701196+0000 mgr.smithi046.lplrtl (mgr.14184) 1367 : cluster [DBG] pgmap v888: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2024-02-23T00:55:50.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:50 smithi046 bash[16275]: cluster 2024-02-23T00:55:49.703200+0000 mgr.smithi046.lplrtl (mgr.14184) 1368 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 0 B/s wr, 5 op/s 2024-02-23T00:55:51.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:50 smithi142 bash[20802]: cluster 2024-02-23T00:55:49.703200+0000 mgr.smithi046.lplrtl (mgr.14184) 1368 : cluster [DBG] pgmap v889: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.2 KiB/s rd, 0 B/s wr, 5 op/s 2024-02-23T00:55:51.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:51 smithi046 bash[16275]: cluster 2024-02-23T00:55:51.704458+0000 mgr.smithi046.lplrtl (mgr.14184) 1369 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:52.005 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:52.005 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:52.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:51 smithi142 bash[20802]: cluster 2024-02-23T00:55:51.704458+0000 mgr.smithi046.lplrtl (mgr.14184) 1369 : cluster [DBG] pgmap v890: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:52.626 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:52.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:52 smithi046 bash[16275]: audit 2024-02-23T00:55:51.986461+0000 mgr.smithi046.lplrtl (mgr.14184) 1370 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:53.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:52 smithi142 bash[20802]: audit 2024-02-23T00:55:51.986461+0000 mgr.smithi046.lplrtl (mgr.14184) 1370 : audit [DBG] from='client.15674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:53.628 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:53.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:53 smithi046 bash[16275]: cluster 2024-02-23T00:55:53.705725+0000 mgr.smithi046.lplrtl (mgr.14184) 1371 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:54.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:53 smithi142 bash[20802]: cluster 2024-02-23T00:55:53.705725+0000 mgr.smithi046.lplrtl (mgr.14184) 1371 : cluster [DBG] pgmap v891: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:56.590 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:55:56.590 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:55:56.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:56 smithi046 bash[16275]: cluster 2024-02-23T00:55:55.707621+0000 mgr.smithi046.lplrtl (mgr.14184) 1372 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:57.213 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:55:57.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:56 smithi142 bash[20802]: cluster 2024-02-23T00:55:55.707621+0000 mgr.smithi046.lplrtl (mgr.14184) 1372 : cluster [DBG] pgmap v892: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:58.214 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:55:58.228 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:57 smithi046 bash[16275]: audit 2024-02-23T00:55:56.570942+0000 mgr.smithi046.lplrtl (mgr.14184) 1373 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:57 smithi142 bash[20802]: audit 2024-02-23T00:55:56.570942+0000 mgr.smithi046.lplrtl (mgr.14184) 1373 : audit [DBG] from='client.15678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:55:59.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:55:58 smithi046 bash[16275]: cluster 2024-02-23T00:55:57.709182+0000 mgr.smithi046.lplrtl (mgr.14184) 1374 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:55:59.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:55:58 smithi142 bash[20802]: cluster 2024-02-23T00:55:57.709182+0000 mgr.smithi046.lplrtl (mgr.14184) 1374 : cluster [DBG] pgmap v893: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:00.823 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:00 smithi046 bash[16275]: cluster 2024-02-23T00:55:59.710182+0000 mgr.smithi046.lplrtl (mgr.14184) 1375 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:01.252 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:01.253 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:01.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:00 smithi142 bash[20802]: cluster 2024-02-23T00:55:59.710182+0000 mgr.smithi046.lplrtl (mgr.14184) 1375 : cluster [DBG] pgmap v894: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:01.876 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:02.877 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:03.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:02 smithi046 bash[16275]: audit 2024-02-23T00:56:01.235804+0000 mgr.smithi046.lplrtl (mgr.14184) 1376 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:03.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:02 smithi046 bash[16275]: cluster 2024-02-23T00:56:01.711271+0000 mgr.smithi046.lplrtl (mgr.14184) 1377 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:03.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:02 smithi142 bash[20802]: audit 2024-02-23T00:56:01.235804+0000 mgr.smithi046.lplrtl (mgr.14184) 1376 : audit [DBG] from='client.15682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:03.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:02 smithi142 bash[20802]: cluster 2024-02-23T00:56:01.711271+0000 mgr.smithi046.lplrtl (mgr.14184) 1377 : cluster [DBG] pgmap v895: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:05.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:04 smithi046 bash[16275]: cluster 2024-02-23T00:56:03.712604+0000 mgr.smithi046.lplrtl (mgr.14184) 1378 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:05.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:04 smithi142 bash[20802]: cluster 2024-02-23T00:56:03.712604+0000 mgr.smithi046.lplrtl (mgr.14184) 1378 : cluster [DBG] pgmap v896: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:05.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:05 smithi046 bash[16275]: cluster 2024-02-23T00:56:05.714185+0000 mgr.smithi046.lplrtl (mgr.14184) 1379 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:06.032 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:06.032 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:06.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:05 smithi142 bash[20802]: cluster 2024-02-23T00:56:05.714185+0000 mgr.smithi046.lplrtl (mgr.14184) 1379 : cluster [DBG] pgmap v897: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:06.644 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:06.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:06 smithi046 bash[16275]: audit 2024-02-23T00:56:06.008775+0000 mgr.smithi046.lplrtl (mgr.14184) 1380 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:07.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:06 smithi142 bash[20802]: audit 2024-02-23T00:56:06.008775+0000 mgr.smithi046.lplrtl (mgr.14184) 1380 : audit [DBG] from='client.15686 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:07.645 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:07.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:07 smithi046 bash[16275]: cluster 2024-02-23T00:56:07.715809+0000 mgr.smithi046.lplrtl (mgr.14184) 1381 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:08.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:07 smithi142 bash[20802]: cluster 2024-02-23T00:56:07.715809+0000 mgr.smithi046.lplrtl (mgr.14184) 1381 : cluster [DBG] pgmap v898: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:10.622 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:10.622 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:10.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:10 smithi046 bash[16275]: cluster 2024-02-23T00:56:09.717839+0000 mgr.smithi046.lplrtl (mgr.14184) 1382 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:11.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:10 smithi142 bash[20802]: cluster 2024-02-23T00:56:09.717839+0000 mgr.smithi046.lplrtl (mgr.14184) 1382 : cluster [DBG] pgmap v899: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:11.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:12.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:11 smithi046 bash[16275]: audit 2024-02-23T00:56:10.603362+0000 mgr.smithi046.lplrtl (mgr.14184) 1383 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:12.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:11 smithi142 bash[20802]: audit 2024-02-23T00:56:10.603362+0000 mgr.smithi046.lplrtl (mgr.14184) 1383 : audit [DBG] from='client.15690 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:12.272 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:13.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:12 smithi046 bash[16275]: cluster 2024-02-23T00:56:11.719396+0000 mgr.smithi046.lplrtl (mgr.14184) 1384 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:13.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:12 smithi142 bash[20802]: cluster 2024-02-23T00:56:11.719396+0000 mgr.smithi046.lplrtl (mgr.14184) 1384 : cluster [DBG] pgmap v900: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:15.076 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:14 smithi046 bash[16275]: cluster 2024-02-23T00:56:13.720479+0000 mgr.smithi046.lplrtl (mgr.14184) 1385 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:15.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:14 smithi142 bash[20802]: cluster 2024-02-23T00:56:13.720479+0000 mgr.smithi046.lplrtl (mgr.14184) 1385 : cluster [DBG] pgmap v901: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:15.536 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:15.536 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:16.165 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:15 smithi046 bash[16275]: audit 2024-02-23T00:56:15.518399+0000 mgr.smithi046.lplrtl (mgr.14184) 1386 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:16.166 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:15 smithi046 bash[16275]: cluster 2024-02-23T00:56:15.722059+0000 mgr.smithi046.lplrtl (mgr.14184) 1387 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:16.167 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:16.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:15 smithi142 bash[20802]: audit 2024-02-23T00:56:15.518399+0000 mgr.smithi046.lplrtl (mgr.14184) 1386 : audit [DBG] from='client.15694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:16.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:15 smithi142 bash[20802]: cluster 2024-02-23T00:56:15.722059+0000 mgr.smithi046.lplrtl (mgr.14184) 1387 : cluster [DBG] pgmap v902: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:17.167 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:18.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:17 smithi142 bash[20802]: audit 2024-02-23T00:56:17.681188+0000 mon.smithi046 (mon.0) 997 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:56:18.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:17 smithi046 bash[16275]: audit 2024-02-23T00:56:17.681188+0000 mon.smithi046 (mon.0) 997 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: cluster 2024-02-23T00:56:17.723442+0000 mgr.smithi046.lplrtl (mgr.14184) 1388 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: audit 2024-02-23T00:56:18.001735+0000 mon.smithi046 (mon.0) 998 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: audit 2024-02-23T00:56:18.002970+0000 mon.smithi046 (mon.0) 999 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: audit 2024-02-23T00:56:18.011499+0000 mon.smithi046 (mon.0) 1000 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: audit 2024-02-23T00:56:18.020399+0000 mon.smithi046 (mon.0) 1001 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:56:18.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:18 smithi046 bash[16275]: audit 2024-02-23T00:56:18.032468+0000 mon.smithi046 (mon.0) 1002 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: cluster 2024-02-23T00:56:17.723442+0000 mgr.smithi046.lplrtl (mgr.14184) 1388 : cluster [DBG] pgmap v903: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: audit 2024-02-23T00:56:18.001735+0000 mon.smithi046 (mon.0) 998 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: audit 2024-02-23T00:56:18.002970+0000 mon.smithi046 (mon.0) 999 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: audit 2024-02-23T00:56:18.011499+0000 mon.smithi046 (mon.0) 1000 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: audit 2024-02-23T00:56:18.020399+0000 mon.smithi046 (mon.0) 1001 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:56:19.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:18 smithi142 bash[20802]: audit 2024-02-23T00:56:18.032468+0000 mon.smithi046 (mon.0) 1002 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:19 smithi046 bash[16275]: cluster 2024-02-23T00:56:18.012338+0000 mgr.smithi046.lplrtl (mgr.14184) 1389 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:19 smithi046 bash[16275]: cephadm 2024-02-23T00:56:18.035880+0000 mgr.smithi046.lplrtl (mgr.14184) 1390 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.pldgwh on smithi142 2024-02-23T00:56:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:19 smithi046 bash[16275]: cluster 2024-02-23T00:56:19.007566+0000 mon.smithi046 (mon.0) 1003 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:56:20.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:19 smithi046 bash[16275]: cluster 2024-02-23T00:56:19.007635+0000 mon.smithi046 (mon.0) 1004 : cluster [INF] Cluster is now healthy 2024-02-23T00:56:20.258 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:19 smithi142 bash[20802]: cluster 2024-02-23T00:56:18.012338+0000 mgr.smithi046.lplrtl (mgr.14184) 1389 : cluster [DBG] pgmap v904: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:19 smithi142 bash[20802]: cephadm 2024-02-23T00:56:18.035880+0000 mgr.smithi046.lplrtl (mgr.14184) 1390 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.pldgwh on smithi142 2024-02-23T00:56:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:19 smithi142 bash[20802]: cluster 2024-02-23T00:56:19.007566+0000 mon.smithi046 (mon.0) 1003 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:56:20.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:19 smithi142 bash[20802]: cluster 2024-02-23T00:56:19.007635+0000 mon.smithi046 (mon.0) 1004 : cluster [INF] Cluster is now healthy 2024-02-23T00:56:20.369 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:20.369 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:54:09.415389Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.dkgocj on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:20.986 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:21.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:21 smithi046 bash[16275]: cluster 2024-02-23T00:56:20.014163+0000 mgr.smithi046.lplrtl (mgr.14184) 1391 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:21.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:21 smithi046 bash[16275]: audit 2024-02-23T00:56:20.345620+0000 mon.smithi046 (mon.0) 1005 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:21.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:21 smithi046 bash[16275]: audit 2024-02-23T00:56:20.355706+0000 mgr.smithi046.lplrtl (mgr.14184) 1392 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:21.743 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:21 smithi142 bash[20802]: cluster 2024-02-23T00:56:20.014163+0000 mgr.smithi046.lplrtl (mgr.14184) 1391 : cluster [DBG] pgmap v905: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:21.743 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:21 smithi142 bash[20802]: audit 2024-02-23T00:56:20.345620+0000 mon.smithi046 (mon.0) 1005 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:21.743 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:21 smithi142 bash[20802]: audit 2024-02-23T00:56:20.355706+0000 mgr.smithi046.lplrtl (mgr.14184) 1392 : audit [DBG] from='client.15698 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:21.988 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:22.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:22 smithi046 bash[16275]: audit 2024-02-23T00:56:21.822606+0000 mon.smithi046 (mon.0) 1006 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.pldgwh"}]: dispatch 2024-02-23T00:56:22.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:22 smithi142 bash[20802]: audit 2024-02-23T00:56:21.822606+0000 mon.smithi046 (mon.0) 1006 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.pldgwh"}]: dispatch 2024-02-23T00:56:23.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: cephadm 2024-02-23T00:56:21.821447+0000 mgr.smithi046.lplrtl (mgr.14184) 1393 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:56:23.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: cephadm 2024-02-23T00:56:21.821975+0000 mgr.smithi046.lplrtl (mgr.14184) 1394 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: cephadm 2024-02-23T00:56:21.824457+0000 mgr.smithi046.lplrtl (mgr.14184) 1395 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: cephadm 2024-02-23T00:56:21.829487+0000 mgr.smithi046.lplrtl (mgr.14184) 1396 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.whwhwx on smithi046 2024-02-23T00:56:23.744 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:23 smithi046 bash[16275]: cluster 2024-02-23T00:56:22.015131+0000 mgr.smithi046.lplrtl (mgr.14184) 1397 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: cephadm 2024-02-23T00:56:21.821447+0000 mgr.smithi046.lplrtl (mgr.14184) 1393 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: cephadm 2024-02-23T00:56:21.821975+0000 mgr.smithi046.lplrtl (mgr.14184) 1394 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: cephadm 2024-02-23T00:56:21.824457+0000 mgr.smithi046.lplrtl (mgr.14184) 1395 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.pldgwh ... 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: cephadm 2024-02-23T00:56:21.829487+0000 mgr.smithi046.lplrtl (mgr.14184) 1396 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.whwhwx on smithi046 2024-02-23T00:56:23.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:23 smithi142 bash[20802]: cluster 2024-02-23T00:56:22.015131+0000 mgr.smithi046.lplrtl (mgr.14184) 1397 : cluster [DBG] pgmap v906: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:25.087 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:25.087 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:13.608547Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.aiujpy on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-aiujpy\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.aiujpy\nDeploy daemon haproxy.nfs.foo.smithi142.aiujpy ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.669581Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.xmmodw on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-xmmodw\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.xmmodw\nDeploy daemon haproxy.nfs.foo.smithi046.xmmodw ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:55:17.672428Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.tdxyij on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:25.490 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:25 smithi046 bash[16275]: cluster 2024-02-23T00:56:24.016267+0000 mgr.smithi046.lplrtl (mgr.14184) 1398 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:25.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:25 smithi142 bash[20802]: cluster 2024-02-23T00:56:24.016267+0000 mgr.smithi046.lplrtl (mgr.14184) 1398 : cluster [DBG] pgmap v907: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 99 B/s rd, 0 op/s 2024-02-23T00:56:25.774 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:26.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:26 smithi046 bash[16275]: audit 2024-02-23T00:56:25.075322+0000 mgr.smithi046.lplrtl (mgr.14184) 1399 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:26.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:26 smithi046 bash[16275]: audit 2024-02-23T00:56:25.818982+0000 mon.smithi046 (mon.0) 1007 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.whwhwx"}]: dispatch 2024-02-23T00:56:26.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:26 smithi142 bash[20802]: audit 2024-02-23T00:56:25.075322+0000 mgr.smithi046.lplrtl (mgr.14184) 1399 : audit [DBG] from='client.15702 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:26.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:26 smithi142 bash[20802]: audit 2024-02-23T00:56:25.818982+0000 mon.smithi046 (mon.0) 1007 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.whwhwx"}]: dispatch 2024-02-23T00:56:26.775 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:27.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cephadm 2024-02-23T00:56:25.817929+0000 mgr.smithi046.lplrtl (mgr.14184) 1400 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cephadm 2024-02-23T00:56:25.818394+0000 mgr.smithi046.lplrtl (mgr.14184) 1401 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cephadm 2024-02-23T00:56:25.820432+0000 mgr.smithi046.lplrtl (mgr.14184) 1402 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cephadm 2024-02-23T00:56:25.822392+0000 mgr.smithi046.lplrtl (mgr.14184) 1403 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cephadm 2024-02-23T00:56:25.824179+0000 mgr.smithi046.lplrtl (mgr.14184) 1404 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cluster 2024-02-23T00:56:25.826243+0000 mgr.smithi046.lplrtl (mgr.14184) 1405 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:56:27.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:27 smithi046 bash[16275]: cluster 2024-02-23T00:56:26.363233+0000 mon.smithi046 (mon.0) 1008 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cephadm 2024-02-23T00:56:25.817929+0000 mgr.smithi046.lplrtl (mgr.14184) 1400 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cephadm 2024-02-23T00:56:25.818394+0000 mgr.smithi046.lplrtl (mgr.14184) 1401 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cephadm 2024-02-23T00:56:25.820432+0000 mgr.smithi046.lplrtl (mgr.14184) 1402 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.whwhwx ... 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cephadm 2024-02-23T00:56:25.822392+0000 mgr.smithi046.lplrtl (mgr.14184) 1403 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cephadm 2024-02-23T00:56:25.824179+0000 mgr.smithi046.lplrtl (mgr.14184) 1404 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cluster 2024-02-23T00:56:25.826243+0000 mgr.smithi046.lplrtl (mgr.14184) 1405 : cluster [DBG] pgmap v908: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:56:27.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:27 smithi142 bash[20802]: cluster 2024-02-23T00:56:26.363233+0000 mon.smithi046 (mon.0) 1008 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:56:29.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:29 smithi046 bash[16275]: cluster 2024-02-23T00:56:27.827898+0000 mgr.smithi046.lplrtl (mgr.14184) 1406 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:56:29.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:29 smithi142 bash[20802]: cluster 2024-02-23T00:56:27.827898+0000 mgr.smithi046.lplrtl (mgr.14184) 1406 : cluster [DBG] pgmap v909: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:56:29.829 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:29.829 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:30.458 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:30.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:30 smithi046 bash[16275]: audit 2024-02-23T00:56:29.436104+0000 mon.smithi046 (mon.0) 1009 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:30.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:30 smithi142 bash[20802]: audit 2024-02-23T00:56:29.436104+0000 mon.smithi046 (mon.0) 1009 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:31.459 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:31.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:31 smithi046 bash[16275]: audit 2024-02-23T00:56:29.814688+0000 mgr.smithi046.lplrtl (mgr.14184) 1407 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:31.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:31 smithi046 bash[16275]: cluster 2024-02-23T00:56:29.829887+0000 mgr.smithi046.lplrtl (mgr.14184) 1408 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-02-23T00:56:31.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:31 smithi142 bash[20802]: audit 2024-02-23T00:56:29.814688+0000 mgr.smithi046.lplrtl (mgr.14184) 1407 : audit [DBG] from='client.15706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:31.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:31 smithi142 bash[20802]: cluster 2024-02-23T00:56:29.829887+0000 mgr.smithi046.lplrtl (mgr.14184) 1408 : cluster [DBG] pgmap v910: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 173 B/s rd, 0 op/s 2024-02-23T00:56:33.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:33 smithi142 bash[20802]: cluster 2024-02-23T00:56:31.831360+0000 mgr.smithi046.lplrtl (mgr.14184) 1409 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:33.788 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:33 smithi046 bash[16275]: cluster 2024-02-23T00:56:31.831360+0000 mgr.smithi046.lplrtl (mgr.14184) 1409 : cluster [DBG] pgmap v911: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:34.558 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:34.558 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:35.137 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:35.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:35 smithi046 bash[16275]: cluster 2024-02-23T00:56:33.832767+0000 mgr.smithi046.lplrtl (mgr.14184) 1410 : cluster [DBG] pgmap v912: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:35.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:35 smithi046 bash[16275]: audit 2024-02-23T00:56:34.543473+0000 mgr.smithi046.lplrtl (mgr.14184) 1411 : audit [DBG] from='client.25399 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:35.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:35 smithi046 bash[16275]: audit 2024-02-23T00:56:35.347490+0000 mon.smithi046 (mon.0) 1010 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:35 smithi142 bash[20802]: cluster 2024-02-23T00:56:33.832767+0000 mgr.smithi046.lplrtl (mgr.14184) 1410 : cluster [DBG] pgmap v912: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:35.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:35 smithi142 bash[20802]: audit 2024-02-23T00:56:34.543473+0000 mgr.smithi046.lplrtl (mgr.14184) 1411 : audit [DBG] from='client.25399 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:35.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:35 smithi142 bash[20802]: audit 2024-02-23T00:56:35.347490+0000 mon.smithi046 (mon.0) 1010 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:56:36.138 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:37.511 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:37 smithi046 bash[16275]: cluster 2024-02-23T00:56:35.834730+0000 mgr.smithi046.lplrtl (mgr.14184) 1412 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:37.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:37 smithi142 bash[20802]: cluster 2024-02-23T00:56:35.834730+0000 mgr.smithi046.lplrtl (mgr.14184) 1412 : cluster [DBG] pgmap v913: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 86 B/s rd, 0 op/s 2024-02-23T00:56:39.268 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:39.268 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:39.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:39 smithi046 bash[16275]: cluster 2024-02-23T00:56:37.836430+0000 mgr.smithi046.lplrtl (mgr.14184) 1413 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:39.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:39 smithi142 bash[20802]: cluster 2024-02-23T00:56:37.836430+0000 mgr.smithi046.lplrtl (mgr.14184) 1413 : cluster [DBG] pgmap v914: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:39.888 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:40.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:40 smithi046 bash[16275]: audit 2024-02-23T00:56:39.251156+0000 mgr.smithi046.lplrtl (mgr.14184) 1414 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:40.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:40 smithi142 bash[20802]: audit 2024-02-23T00:56:39.251156+0000 mgr.smithi046.lplrtl (mgr.14184) 1414 : audit [DBG] from='client.15714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:40.890 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:41.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:41 smithi046 bash[16275]: cluster 2024-02-23T00:56:39.838416+0000 mgr.smithi046.lplrtl (mgr.14184) 1415 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:41 smithi142 bash[20802]: cluster 2024-02-23T00:56:39.838416+0000 mgr.smithi046.lplrtl (mgr.14184) 1415 : cluster [DBG] pgmap v915: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:43.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:43 smithi142 bash[20802]: cluster 2024-02-23T00:56:41.839882+0000 mgr.smithi046.lplrtl (mgr.14184) 1416 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:43.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:43 smithi046 bash[16275]: cluster 2024-02-23T00:56:41.839882+0000 mgr.smithi046.lplrtl (mgr.14184) 1416 : cluster [DBG] pgmap v916: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:43.999 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:43.999 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:44.576 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:45.577 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:45.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:45 smithi142 bash[20802]: cluster 2024-02-23T00:56:43.841164+0000 mgr.smithi046.lplrtl (mgr.14184) 1417 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:45.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:45 smithi142 bash[20802]: audit 2024-02-23T00:56:43.982119+0000 mgr.smithi046.lplrtl (mgr.14184) 1418 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:45 smithi046 bash[16275]: cluster 2024-02-23T00:56:43.841164+0000 mgr.smithi046.lplrtl (mgr.14184) 1417 : cluster [DBG] pgmap v917: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:45.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:45 smithi046 bash[16275]: audit 2024-02-23T00:56:43.982119+0000 mgr.smithi046.lplrtl (mgr.14184) 1418 : audit [DBG] from='client.15718 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:47.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:47 smithi142 bash[20802]: cluster 2024-02-23T00:56:45.843030+0000 mgr.smithi046.lplrtl (mgr.14184) 1419 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:47.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:47 smithi046 bash[16275]: cluster 2024-02-23T00:56:45.843030+0000 mgr.smithi046.lplrtl (mgr.14184) 1419 : cluster [DBG] pgmap v918: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:48.761 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:48.761 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:49.366 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:49.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:49 smithi046 bash[16275]: cluster 2024-02-23T00:56:47.844599+0000 mgr.smithi046.lplrtl (mgr.14184) 1420 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:49.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:49 smithi046 bash[16275]: audit 2024-02-23T00:56:48.746486+0000 mgr.smithi046.lplrtl (mgr.14184) 1421 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:50.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:49 smithi142 bash[20802]: cluster 2024-02-23T00:56:47.844599+0000 mgr.smithi046.lplrtl (mgr.14184) 1420 : cluster [DBG] pgmap v919: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:50.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:49 smithi142 bash[20802]: audit 2024-02-23T00:56:48.746486+0000 mgr.smithi046.lplrtl (mgr.14184) 1421 : audit [DBG] from='client.15722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:50.367 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:51.713 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:51 smithi046 bash[16275]: cluster 2024-02-23T00:56:49.846618+0000 mgr.smithi046.lplrtl (mgr.14184) 1422 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:52.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:51 smithi142 bash[20802]: cluster 2024-02-23T00:56:49.846618+0000 mgr.smithi046.lplrtl (mgr.14184) 1422 : cluster [DBG] pgmap v920: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:56:53.496 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:53.496 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:53.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:53 smithi046 bash[16275]: cluster 2024-02-23T00:56:51.848079+0000 mgr.smithi046.lplrtl (mgr.14184) 1423 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:54.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:53 smithi142 bash[20802]: cluster 2024-02-23T00:56:51.848079+0000 mgr.smithi046.lplrtl (mgr.14184) 1423 : cluster [DBG] pgmap v921: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:54.086 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:54.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:54 smithi046 bash[16275]: audit 2024-02-23T00:56:53.475825+0000 mgr.smithi046.lplrtl (mgr.14184) 1424 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:54 smithi142 bash[20802]: audit 2024-02-23T00:56:53.475825+0000 mgr.smithi046.lplrtl (mgr.14184) 1424 : audit [DBG] from='client.15726 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:56:55.087 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:55.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:55 smithi046 bash[16275]: cluster 2024-02-23T00:56:53.849502+0000 mgr.smithi046.lplrtl (mgr.14184) 1425 : cluster [DBG] pgmap v922: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:56.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:55 smithi142 bash[20802]: cluster 2024-02-23T00:56:53.849502+0000 mgr.smithi046.lplrtl (mgr.14184) 1425 : cluster [DBG] pgmap v922: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:57.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:57 smithi046 bash[16275]: cluster 2024-02-23T00:56:55.851405+0000 mgr.smithi046.lplrtl (mgr.14184) 1426 : cluster [DBG] pgmap v923: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:58.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:57 smithi142 bash[20802]: cluster 2024-02-23T00:56:55.851405+0000 mgr.smithi046.lplrtl (mgr.14184) 1426 : cluster [DBG] pgmap v923: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:58.207 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:56:58.207 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:56:58.855 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:56:59.856 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:56:59.869 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:59 smithi046 bash[16275]: cluster 2024-02-23T00:56:57.853058+0000 mgr.smithi046.lplrtl (mgr.14184) 1427 : cluster [DBG] pgmap v924: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:56:59.869 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:56:59 smithi046 bash[16275]: audit 2024-02-23T00:56:58.187552+0000 mgr.smithi046.lplrtl (mgr.14184) 1428 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:00.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:59 smithi142 bash[20802]: cluster 2024-02-23T00:56:57.853058+0000 mgr.smithi046.lplrtl (mgr.14184) 1427 : cluster [DBG] pgmap v924: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:00.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:56:59 smithi142 bash[20802]: audit 2024-02-23T00:56:58.187552+0000 mgr.smithi046.lplrtl (mgr.14184) 1428 : audit [DBG] from='client.15730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:01.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:01 smithi046 bash[16275]: cluster 2024-02-23T00:56:59.855145+0000 mgr.smithi046.lplrtl (mgr.14184) 1429 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:02.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:01 smithi142 bash[20802]: cluster 2024-02-23T00:56:59.855145+0000 mgr.smithi046.lplrtl (mgr.14184) 1429 : cluster [DBG] pgmap v925: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:03.113 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:03.114 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:03.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:03.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:03 smithi046 bash[16275]: cluster 2024-02-23T00:57:01.856229+0000 mgr.smithi046.lplrtl (mgr.14184) 1430 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:04.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:03 smithi142 bash[20802]: cluster 2024-02-23T00:57:01.856229+0000 mgr.smithi046.lplrtl (mgr.14184) 1430 : cluster [DBG] pgmap v926: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:04.788 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:04.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:04 smithi046 bash[16275]: audit 2024-02-23T00:57:03.093301+0000 mgr.smithi046.lplrtl (mgr.14184) 1431 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:05.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:04 smithi142 bash[20802]: audit 2024-02-23T00:57:03.093301+0000 mgr.smithi046.lplrtl (mgr.14184) 1431 : audit [DBG] from='client.15734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:05.896 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:05 smithi046 bash[16275]: cluster 2024-02-23T00:57:03.857641+0000 mgr.smithi046.lplrtl (mgr.14184) 1432 : cluster [DBG] pgmap v927: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:06.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:05 smithi142 bash[20802]: cluster 2024-02-23T00:57:03.857641+0000 mgr.smithi046.lplrtl (mgr.14184) 1432 : cluster [DBG] pgmap v927: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:07.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:07 smithi046 bash[16275]: cluster 2024-02-23T00:57:05.859617+0000 mgr.smithi046.lplrtl (mgr.14184) 1433 : cluster [DBG] pgmap v928: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:07.887 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:07.888 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:08.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:07 smithi142 bash[20802]: cluster 2024-02-23T00:57:05.859617+0000 mgr.smithi046.lplrtl (mgr.14184) 1433 : cluster [DBG] pgmap v928: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:08.484 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:09.485 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:09.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:09 smithi046 bash[16275]: cluster 2024-02-23T00:57:07.860631+0000 mgr.smithi046.lplrtl (mgr.14184) 1434 : cluster [DBG] pgmap v929: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:09.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:09 smithi046 bash[16275]: audit 2024-02-23T00:57:07.875918+0000 mgr.smithi046.lplrtl (mgr.14184) 1435 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:09 smithi142 bash[20802]: cluster 2024-02-23T00:57:07.860631+0000 mgr.smithi046.lplrtl (mgr.14184) 1434 : cluster [DBG] pgmap v929: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:10.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:09 smithi142 bash[20802]: audit 2024-02-23T00:57:07.875918+0000 mgr.smithi046.lplrtl (mgr.14184) 1435 : audit [DBG] from='client.15738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:11.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:11 smithi046 bash[16275]: cluster 2024-02-23T00:57:09.862653+0000 mgr.smithi046.lplrtl (mgr.14184) 1436 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:12.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:11 smithi142 bash[20802]: cluster 2024-02-23T00:57:09.862653+0000 mgr.smithi046.lplrtl (mgr.14184) 1436 : cluster [DBG] pgmap v930: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:12.592 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:12.592 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:13.189 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:13.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:13 smithi046 bash[16275]: cluster 2024-02-23T00:57:11.864225+0000 mgr.smithi046.lplrtl (mgr.14184) 1437 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:13.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:13 smithi046 bash[16275]: audit 2024-02-23T00:57:12.580183+0000 mgr.smithi046.lplrtl (mgr.14184) 1438 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:13 smithi142 bash[20802]: cluster 2024-02-23T00:57:11.864225+0000 mgr.smithi046.lplrtl (mgr.14184) 1437 : cluster [DBG] pgmap v931: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:14.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:13 smithi142 bash[20802]: audit 2024-02-23T00:57:12.580183+0000 mgr.smithi046.lplrtl (mgr.14184) 1438 : audit [DBG] from='client.15742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:14.190 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:15.686 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:15 smithi046 bash[16275]: cluster 2024-02-23T00:57:13.865801+0000 mgr.smithi046.lplrtl (mgr.14184) 1439 : cluster [DBG] pgmap v932: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:16.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:15 smithi142 bash[20802]: cluster 2024-02-23T00:57:13.865801+0000 mgr.smithi046.lplrtl (mgr.14184) 1439 : cluster [DBG] pgmap v932: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:17.370 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:17.370 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:17.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:17 smithi046 bash[16275]: cluster 2024-02-23T00:57:15.867908+0000 mgr.smithi046.lplrtl (mgr.14184) 1440 : cluster [DBG] pgmap v933: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:17.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:18.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:17 smithi142 bash[20802]: cluster 2024-02-23T00:57:15.867908+0000 mgr.smithi046.lplrtl (mgr.14184) 1440 : cluster [DBG] pgmap v933: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:18.977 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:18.992 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:18 smithi046 bash[16275]: audit 2024-02-23T00:57:17.352533+0000 mgr.smithi046.lplrtl (mgr.14184) 1441 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:18 smithi142 bash[20802]: audit 2024-02-23T00:57:17.352533+0000 mgr.smithi046.lplrtl (mgr.14184) 1441 : audit [DBG] from='client.15746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:19.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:19 smithi046 bash[16275]: cluster 2024-02-23T00:57:17.869522+0000 mgr.smithi046.lplrtl (mgr.14184) 1442 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:20.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:19 smithi142 bash[20802]: cluster 2024-02-23T00:57:17.869522+0000 mgr.smithi046.lplrtl (mgr.14184) 1442 : cluster [DBG] pgmap v934: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:21.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:21 smithi046 bash[16275]: cluster 2024-02-23T00:57:19.871762+0000 mgr.smithi046.lplrtl (mgr.14184) 1443 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:22.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:21 smithi142 bash[20802]: cluster 2024-02-23T00:57:19.871762+0000 mgr.smithi046.lplrtl (mgr.14184) 1443 : cluster [DBG] pgmap v935: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:22.105 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:22.105 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:22.692 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:23.693 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:23.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:23 smithi046 bash[16275]: cluster 2024-02-23T00:57:21.872638+0000 mgr.smithi046.lplrtl (mgr.14184) 1444 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:23.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:23 smithi046 bash[16275]: audit 2024-02-23T00:57:22.086964+0000 mgr.smithi046.lplrtl (mgr.14184) 1445 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:24.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:23 smithi142 bash[20802]: cluster 2024-02-23T00:57:21.872638+0000 mgr.smithi046.lplrtl (mgr.14184) 1444 : cluster [DBG] pgmap v936: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:24.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:23 smithi142 bash[20802]: audit 2024-02-23T00:57:22.086964+0000 mgr.smithi046.lplrtl (mgr.14184) 1445 : audit [DBG] from='client.15750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:26.008 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:25 smithi046 bash[16275]: cluster 2024-02-23T00:57:23.873550+0000 mgr.smithi046.lplrtl (mgr.14184) 1446 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:26.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:25 smithi142 bash[20802]: cluster 2024-02-23T00:57:23.873550+0000 mgr.smithi046.lplrtl (mgr.14184) 1446 : cluster [DBG] pgmap v937: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:26.861 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:26.862 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:26.925 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:26 smithi046 bash[16275]: audit 2024-02-23T00:57:25.828222+0000 mon.smithi046 (mon.0) 1011 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:57:27.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:26 smithi142 bash[20802]: audit 2024-02-23T00:57:25.828222+0000 mon.smithi046 (mon.0) 1011 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:57:27.520 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:27.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:27 smithi046 bash[16275]: cluster 2024-02-23T00:57:25.875425+0000 mgr.smithi046.lplrtl (mgr.14184) 1447 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:28.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:27 smithi142 bash[20802]: cluster 2024-02-23T00:57:25.875425+0000 mgr.smithi046.lplrtl (mgr.14184) 1447 : cluster [DBG] pgmap v938: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:28.521 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:28.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:28 smithi046 bash[16275]: audit 2024-02-23T00:57:26.842378+0000 mgr.smithi046.lplrtl (mgr.14184) 1448 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:29.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:28 smithi142 bash[20802]: audit 2024-02-23T00:57:26.842378+0000 mgr.smithi046.lplrtl (mgr.14184) 1448 : audit [DBG] from='client.15754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:29.791 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:29 smithi046 bash[16275]: cluster 2024-02-23T00:57:27.877043+0000 mgr.smithi046.lplrtl (mgr.14184) 1449 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:30.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:29 smithi142 bash[20802]: cluster 2024-02-23T00:57:27.877043+0000 mgr.smithi046.lplrtl (mgr.14184) 1449 : cluster [DBG] pgmap v939: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:31.648 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:31.648 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:47:04.163331Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:47:04.163513Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:47:04.163688Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:47:04.163132Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:47:04.162718Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:47:04.164927Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:47:04.163861Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:47:04.164033Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:47:04.164751Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:31.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:31 smithi046 bash[16275]: cluster 2024-02-23T00:57:29.879216+0000 mgr.smithi046.lplrtl (mgr.14184) 1450 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:32.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:31 smithi142 bash[20802]: cluster 2024-02-23T00:57:29.879216+0000 mgr.smithi046.lplrtl (mgr.14184) 1450 : cluster [DBG] pgmap v940: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:57:32.302 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:32.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:32 smithi046 bash[16275]: audit 2024-02-23T00:57:31.631642+0000 mgr.smithi046.lplrtl (mgr.14184) 1451 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:32.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:32 smithi046 bash[16275]: audit 2024-02-23T00:57:32.524155+0000 mon.smithi046 (mon.0) 1012 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:33.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:32 smithi142 bash[20802]: audit 2024-02-23T00:57:31.631642+0000 mgr.smithi046.lplrtl (mgr.14184) 1451 : audit [DBG] from='client.15758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:33.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:32 smithi142 bash[20802]: audit 2024-02-23T00:57:32.524155+0000 mon.smithi046 (mon.0) 1012 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:33.303 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: cluster 2024-02-23T00:57:31.880412+0000 mgr.smithi046.lplrtl (mgr.14184) 1452 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: audit 2024-02-23T00:57:32.819088+0000 mon.smithi046 (mon.0) 1013 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:57:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: audit 2024-02-23T00:57:32.820445+0000 mon.smithi046 (mon.0) 1014 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:57:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: audit 2024-02-23T00:57:32.827917+0000 mon.smithi046 (mon.0) 1015 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:33.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: audit 2024-02-23T00:57:32.835447+0000 mon.smithi046 (mon.0) 1016 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:57:33.990 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:33 smithi046 bash[16275]: audit 2024-02-23T00:57:32.849399+0000 mon.smithi046 (mon.0) 1017 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:34.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: cluster 2024-02-23T00:57:31.880412+0000 mgr.smithi046.lplrtl (mgr.14184) 1452 : cluster [DBG] pgmap v941: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: audit 2024-02-23T00:57:32.819088+0000 mon.smithi046 (mon.0) 1013 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:57:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: audit 2024-02-23T00:57:32.820445+0000 mon.smithi046 (mon.0) 1014 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:57:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: audit 2024-02-23T00:57:32.827917+0000 mon.smithi046 (mon.0) 1015 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: audit 2024-02-23T00:57:32.835447+0000 mon.smithi046 (mon.0) 1016 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:57:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:33 smithi142 bash[20802]: audit 2024-02-23T00:57:32.849399+0000 mon.smithi046 (mon.0) 1017 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:34.762 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:34 smithi046 bash[16275]: cluster 2024-02-23T00:57:32.829055+0000 mgr.smithi046.lplrtl (mgr.14184) 1453 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:34.762 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:34 smithi046 bash[16275]: cephadm 2024-02-23T00:57:32.853840+0000 mgr.smithi046.lplrtl (mgr.14184) 1454 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.kjngpz on smithi142 2024-02-23T00:57:34.762 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:34 smithi046 bash[16275]: cluster 2024-02-23T00:57:33.825063+0000 mon.smithi046 (mon.0) 1018 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:57:34.762 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:34 smithi046 bash[16275]: cluster 2024-02-23T00:57:33.825132+0000 mon.smithi046 (mon.0) 1019 : cluster [INF] Cluster is now healthy 2024-02-23T00:57:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:34 smithi142 bash[20802]: cluster 2024-02-23T00:57:32.829055+0000 mgr.smithi046.lplrtl (mgr.14184) 1453 : cluster [DBG] pgmap v942: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:34 smithi142 bash[20802]: cephadm 2024-02-23T00:57:32.853840+0000 mgr.smithi046.lplrtl (mgr.14184) 1454 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.kjngpz on smithi142 2024-02-23T00:57:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:34 smithi142 bash[20802]: cluster 2024-02-23T00:57:33.825063+0000 mon.smithi046 (mon.0) 1018 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:57:35.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:34 smithi142 bash[20802]: cluster 2024-02-23T00:57:33.825132+0000 mon.smithi046 (mon.0) 1019 : cluster [INF] Cluster is now healthy 2024-02-23T00:57:36.444 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:36.445 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:55:17.675201Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.hdxify on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:21.824178Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.pldgwh on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-pldgwh\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.pldgwh\nDeploy daemon haproxy.nfs.foo.smithi142.pldgwh ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.820107Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.whwhwx on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-whwhwx\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.whwhwx\nDeploy daemon haproxy.nfs.foo.smithi046.whwhwx ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:56:25.822266Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.duibwk on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:36.508 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:36 smithi142 bash[20802]: cluster 2024-02-23T00:57:34.830893+0000 mgr.smithi046.lplrtl (mgr.14184) 1455 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:36.509 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:36 smithi142 bash[20802]: audit 2024-02-23T00:57:35.349414+0000 mon.smithi046 (mon.0) 1020 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:36.723 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:36 smithi046 bash[16275]: cluster 2024-02-23T00:57:34.830893+0000 mgr.smithi046.lplrtl (mgr.14184) 1455 : cluster [DBG] pgmap v943: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:36.723 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:36 smithi046 bash[16275]: audit 2024-02-23T00:57:35.349414+0000 mon.smithi046 (mon.0) 1020 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:37.079 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:37.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: audit 2024-02-23T00:57:36.432162+0000 mgr.smithi046.lplrtl (mgr.14184) 1456 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: cephadm 2024-02-23T00:57:36.717346+0000 mgr.smithi046.lplrtl (mgr.14184) 1457 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: cephadm 2024-02-23T00:57:36.717880+0000 mgr.smithi046.lplrtl (mgr.14184) 1458 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: audit 2024-02-23T00:57:36.718563+0000 mon.smithi046 (mon.0) 1021 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.kjngpz"}]: dispatch 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: cephadm 2024-02-23T00:57:36.720344+0000 mgr.smithi046.lplrtl (mgr.14184) 1459 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:37 smithi046 bash[16275]: cephadm 2024-02-23T00:57:36.725149+0000 mgr.smithi046.lplrtl (mgr.14184) 1460 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.zacdcq on smithi046 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: audit 2024-02-23T00:57:36.432162+0000 mgr.smithi046.lplrtl (mgr.14184) 1456 : audit [DBG] from='client.15762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: cephadm 2024-02-23T00:57:36.717346+0000 mgr.smithi046.lplrtl (mgr.14184) 1457 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: cephadm 2024-02-23T00:57:36.717880+0000 mgr.smithi046.lplrtl (mgr.14184) 1458 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: audit 2024-02-23T00:57:36.718563+0000 mon.smithi046 (mon.0) 1021 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.kjngpz"}]: dispatch 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: cephadm 2024-02-23T00:57:36.720344+0000 mgr.smithi046.lplrtl (mgr.14184) 1459 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.kjngpz ... 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:37.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:37 smithi142 bash[20802]: cephadm 2024-02-23T00:57:36.725149+0000 mgr.smithi046.lplrtl (mgr.14184) 1460 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.zacdcq on smithi046 2024-02-23T00:57:38.081 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:38.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:38 smithi142 bash[20802]: cluster 2024-02-23T00:57:36.832025+0000 mgr.smithi046.lplrtl (mgr.14184) 1461 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:38.871 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:38 smithi046 bash[16275]: cluster 2024-02-23T00:57:36.832025+0000 mgr.smithi046.lplrtl (mgr.14184) 1461 : cluster [DBG] pgmap v944: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:40.489 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:40 smithi046 bash[16275]: cluster 2024-02-23T00:57:38.833244+0000 mgr.smithi046.lplrtl (mgr.14184) 1462 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:40.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:40 smithi142 bash[20802]: cluster 2024-02-23T00:57:38.833244+0000 mgr.smithi046.lplrtl (mgr.14184) 1462 : cluster [DBG] pgmap v945: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:41.401 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:41.401 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:41.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:41 smithi046 bash[16275]: audit 2024-02-23T00:57:40.831941+0000 mon.smithi046 (mon.0) 1022 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.zacdcq"}]: dispatch 2024-02-23T00:57:41.758 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:41 smithi142 bash[20802]: audit 2024-02-23T00:57:40.831941+0000 mon.smithi046 (mon.0) 1022 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.zacdcq"}]: dispatch 2024-02-23T00:57:42.096 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cephadm 2024-02-23T00:57:40.830393+0000 mgr.smithi046.lplrtl (mgr.14184) 1463 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.740 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.741 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cephadm 2024-02-23T00:57:40.830640+0000 mgr.smithi046.lplrtl (mgr.14184) 1464 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cephadm 2024-02-23T00:57:40.833741+0000 mgr.smithi046.lplrtl (mgr.14184) 1465 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.742 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cluster 2024-02-23T00:57:40.835063+0000 mgr.smithi046.lplrtl (mgr.14184) 1466 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cephadm 2024-02-23T00:57:40.838288+0000 mgr.smithi046.lplrtl (mgr.14184) 1467 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cephadm 2024-02-23T00:57:40.842404+0000 mgr.smithi046.lplrtl (mgr.14184) 1468 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cluster 2024-02-23T00:57:40.843559+0000 mgr.smithi046.lplrtl (mgr.14184) 1469 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 B/s rd, 0 op/s 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: cluster 2024-02-23T00:57:41.368768+0000 mon.smithi046 (mon.0) 1023 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:57:42.743 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:42 smithi046 bash[16275]: audit 2024-02-23T00:57:41.381805+0000 mgr.smithi046.lplrtl (mgr.14184) 1470 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cephadm 2024-02-23T00:57:40.830393+0000 mgr.smithi046.lplrtl (mgr.14184) 1463 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.760 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.761 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cephadm 2024-02-23T00:57:40.830640+0000 mgr.smithi046.lplrtl (mgr.14184) 1464 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cephadm 2024-02-23T00:57:40.833741+0000 mgr.smithi046.lplrtl (mgr.14184) 1465 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.zacdcq ... 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cluster 2024-02-23T00:57:40.835063+0000 mgr.smithi046.lplrtl (mgr.14184) 1466 : cluster [DBG] pgmap v946: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 93 B/s rd, 0 op/s 2024-02-23T00:57:42.762 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cephadm 2024-02-23T00:57:40.838288+0000 mgr.smithi046.lplrtl (mgr.14184) 1467 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:57:42.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cephadm 2024-02-23T00:57:40.842404+0000 mgr.smithi046.lplrtl (mgr.14184) 1468 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:57:42.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cluster 2024-02-23T00:57:40.843559+0000 mgr.smithi046.lplrtl (mgr.14184) 1469 : cluster [DBG] pgmap v947: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 B/s rd, 0 op/s 2024-02-23T00:57:42.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: cluster 2024-02-23T00:57:41.368768+0000 mon.smithi046 (mon.0) 1023 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:57:42.763 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:42 smithi142 bash[20802]: audit 2024-02-23T00:57:41.381805+0000 mgr.smithi046.lplrtl (mgr.14184) 1470 : audit [DBG] from='client.15766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:43.097 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:44.465 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:44 smithi046 bash[16275]: cluster 2024-02-23T00:57:42.845117+0000 mgr.smithi046.lplrtl (mgr.14184) 1471 : cluster [DBG] pgmap v948: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:44.759 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:44 smithi142 bash[20802]: cluster 2024-02-23T00:57:42.845117+0000 mgr.smithi046.lplrtl (mgr.14184) 1471 : cluster [DBG] pgmap v948: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:45.837 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:45 smithi046 bash[16275]: audit 2024-02-23T00:57:44.502576+0000 mon.smithi046 (mon.0) 1024 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:46.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:45 smithi142 bash[20802]: audit 2024-02-23T00:57:44.502576+0000 mon.smithi046 (mon.0) 1024 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:46.201 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:46.201 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:46.816 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:46 smithi046 bash[16275]: cluster 2024-02-23T00:57:44.847107+0000 mgr.smithi046.lplrtl (mgr.14184) 1472 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:46.817 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:47.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:46 smithi142 bash[20802]: cluster 2024-02-23T00:57:44.847107+0000 mgr.smithi046.lplrtl (mgr.14184) 1472 : cluster [DBG] pgmap v949: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:47.818 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:47.831 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:47 smithi046 bash[16275]: audit 2024-02-23T00:57:46.184549+0000 mgr.smithi046.lplrtl (mgr.14184) 1473 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:48.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:47 smithi142 bash[20802]: audit 2024-02-23T00:57:46.184549+0000 mgr.smithi046.lplrtl (mgr.14184) 1473 : audit [DBG] from='client.15770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:48.875 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:48 smithi046 bash[16275]: cluster 2024-02-23T00:57:46.848570+0000 mgr.smithi046.lplrtl (mgr.14184) 1474 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:49.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:48 smithi142 bash[20802]: cluster 2024-02-23T00:57:46.848570+0000 mgr.smithi046.lplrtl (mgr.14184) 1474 : cluster [DBG] pgmap v950: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:50.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:50 smithi046 bash[16275]: cluster 2024-02-23T00:57:48.849967+0000 mgr.smithi046.lplrtl (mgr.14184) 1475 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:50.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:50 smithi046 bash[16275]: audit 2024-02-23T00:57:50.347623+0000 mon.smithi046 (mon.0) 1025 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:50.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:50 smithi142 bash[20802]: cluster 2024-02-23T00:57:48.849967+0000 mgr.smithi046.lplrtl (mgr.14184) 1475 : cluster [DBG] pgmap v951: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:50.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:50 smithi142 bash[20802]: audit 2024-02-23T00:57:50.347623+0000 mon.smithi046 (mon.0) 1025 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:57:50.890 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:50.890 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:51.502 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:52.503 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:52.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:52 smithi046 bash[16275]: cluster 2024-02-23T00:57:50.851758+0000 mgr.smithi046.lplrtl (mgr.14184) 1476 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:52.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:52 smithi046 bash[16275]: audit 2024-02-23T00:57:50.871705+0000 mgr.smithi046.lplrtl (mgr.14184) 1477 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:52 smithi142 bash[20802]: cluster 2024-02-23T00:57:50.851758+0000 mgr.smithi046.lplrtl (mgr.14184) 1476 : cluster [DBG] pgmap v952: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-02-23T00:57:53.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:52 smithi142 bash[20802]: audit 2024-02-23T00:57:50.871705+0000 mgr.smithi046.lplrtl (mgr.14184) 1477 : audit [DBG] from='client.15774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:54.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:54 smithi046 bash[16275]: cluster 2024-02-23T00:57:52.853382+0000 mgr.smithi046.lplrtl (mgr.14184) 1478 : cluster [DBG] pgmap v953: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:55.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:54 smithi142 bash[20802]: cluster 2024-02-23T00:57:52.853382+0000 mgr.smithi046.lplrtl (mgr.14184) 1478 : cluster [DBG] pgmap v953: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:55.595 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:57:55.595 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:57:56.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:57:56.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:56 smithi046 bash[16275]: cluster 2024-02-23T00:57:54.855480+0000 mgr.smithi046.lplrtl (mgr.14184) 1479 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:56.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:56 smithi046 bash[16275]: audit 2024-02-23T00:57:55.577939+0000 mgr.smithi046.lplrtl (mgr.14184) 1480 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:57.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:56 smithi142 bash[20802]: cluster 2024-02-23T00:57:54.855480+0000 mgr.smithi046.lplrtl (mgr.14184) 1479 : cluster [DBG] pgmap v954: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:57.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:56 smithi142 bash[20802]: audit 2024-02-23T00:57:55.577939+0000 mgr.smithi046.lplrtl (mgr.14184) 1480 : audit [DBG] from='client.15778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:57:57.193 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:57:58.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:57:58 smithi046 bash[16275]: cluster 2024-02-23T00:57:56.856875+0000 mgr.smithi046.lplrtl (mgr.14184) 1481 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:57:59.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:57:58 smithi142 bash[20802]: cluster 2024-02-23T00:57:56.856875+0000 mgr.smithi046.lplrtl (mgr.14184) 1481 : cluster [DBG] pgmap v955: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:00.142 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:00.142 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:00.703 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:00.857 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:00 smithi142 bash[20802]: cluster 2024-02-23T00:57:58.858331+0000 mgr.smithi046.lplrtl (mgr.14184) 1482 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:00.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:00 smithi046 bash[16275]: cluster 2024-02-23T00:57:58.858331+0000 mgr.smithi046.lplrtl (mgr.14184) 1482 : cluster [DBG] pgmap v956: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:01.703 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:01.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:01 smithi046 bash[16275]: audit 2024-02-23T00:58:00.127832+0000 mgr.smithi046.lplrtl (mgr.14184) 1483 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:02.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:01 smithi142 bash[20802]: audit 2024-02-23T00:58:00.127832+0000 mgr.smithi046.lplrtl (mgr.14184) 1483 : audit [DBG] from='client.15782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:02.913 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:02 smithi046 bash[16275]: cluster 2024-02-23T00:58:00.860244+0000 mgr.smithi046.lplrtl (mgr.14184) 1484 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:03.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:02 smithi142 bash[20802]: cluster 2024-02-23T00:58:00.860244+0000 mgr.smithi046.lplrtl (mgr.14184) 1484 : cluster [DBG] pgmap v957: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:04.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:04 smithi046 bash[16275]: cluster 2024-02-23T00:58:02.861857+0000 mgr.smithi046.lplrtl (mgr.14184) 1485 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:04.803 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:04.803 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:05.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:04 smithi142 bash[20802]: cluster 2024-02-23T00:58:02.861857+0000 mgr.smithi046.lplrtl (mgr.14184) 1485 : cluster [DBG] pgmap v958: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:05.359 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:05.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:05 smithi046 bash[16275]: audit 2024-02-23T00:58:04.791893+0000 mgr.smithi046.lplrtl (mgr.14184) 1486 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:06.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:05 smithi142 bash[20802]: audit 2024-02-23T00:58:04.791893+0000 mgr.smithi046.lplrtl (mgr.14184) 1486 : audit [DBG] from='client.15786 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:06.359 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:06.739 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:06 smithi046 bash[16275]: cluster 2024-02-23T00:58:04.864599+0000 mgr.smithi046.lplrtl (mgr.14184) 1487 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:07.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:06 smithi142 bash[20802]: cluster 2024-02-23T00:58:04.864599+0000 mgr.smithi046.lplrtl (mgr.14184) 1487 : cluster [DBG] pgmap v959: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:08.896 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:08 smithi046 bash[16275]: cluster 2024-02-23T00:58:06.866148+0000 mgr.smithi046.lplrtl (mgr.14184) 1488 : cluster [DBG] pgmap v960: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:09.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:08 smithi142 bash[20802]: cluster 2024-02-23T00:58:06.866148+0000 mgr.smithi046.lplrtl (mgr.14184) 1488 : cluster [DBG] pgmap v960: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:09.255 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:09.255 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:09.864 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:10.865 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:10.879 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:10 smithi046 bash[16275]: cluster 2024-02-23T00:58:08.867007+0000 mgr.smithi046.lplrtl (mgr.14184) 1489 : cluster [DBG] pgmap v961: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:10.879 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:10 smithi046 bash[16275]: audit 2024-02-23T00:58:09.239068+0000 mgr.smithi046.lplrtl (mgr.14184) 1490 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:10 smithi142 bash[20802]: cluster 2024-02-23T00:58:08.867007+0000 mgr.smithi046.lplrtl (mgr.14184) 1489 : cluster [DBG] pgmap v961: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:11.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:10 smithi142 bash[20802]: audit 2024-02-23T00:58:09.239068+0000 mgr.smithi046.lplrtl (mgr.14184) 1490 : audit [DBG] from='client.15790 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:12.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:12 smithi046 bash[16275]: cluster 2024-02-23T00:58:10.869550+0000 mgr.smithi046.lplrtl (mgr.14184) 1491 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:13.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:12 smithi142 bash[20802]: cluster 2024-02-23T00:58:10.869550+0000 mgr.smithi046.lplrtl (mgr.14184) 1491 : cluster [DBG] pgmap v962: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:13.995 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:13.995 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:14.570 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:14.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:14 smithi046 bash[16275]: cluster 2024-02-23T00:58:12.871268+0000 mgr.smithi046.lplrtl (mgr.14184) 1492 : cluster [DBG] pgmap v963: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:15.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:14 smithi142 bash[20802]: cluster 2024-02-23T00:58:12.871268+0000 mgr.smithi046.lplrtl (mgr.14184) 1492 : cluster [DBG] pgmap v963: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:15.571 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:15.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:15 smithi046 bash[16275]: audit 2024-02-23T00:58:13.983752+0000 mgr.smithi046.lplrtl (mgr.14184) 1493 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:16.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:15 smithi142 bash[20802]: audit 2024-02-23T00:58:13.983752+0000 mgr.smithi046.lplrtl (mgr.14184) 1493 : audit [DBG] from='client.15794 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:16.979 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:16 smithi046 bash[16275]: cluster 2024-02-23T00:58:14.873248+0000 mgr.smithi046.lplrtl (mgr.14184) 1494 : cluster [DBG] pgmap v964: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:17.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:16 smithi142 bash[20802]: cluster 2024-02-23T00:58:14.873248+0000 mgr.smithi046.lplrtl (mgr.14184) 1494 : cluster [DBG] pgmap v964: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:18.619 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:18.620 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:18.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:18 smithi046 bash[16275]: cluster 2024-02-23T00:58:16.874749+0000 mgr.smithi046.lplrtl (mgr.14184) 1495 : cluster [DBG] pgmap v965: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:19.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:18 smithi142 bash[20802]: cluster 2024-02-23T00:58:16.874749+0000 mgr.smithi046.lplrtl (mgr.14184) 1495 : cluster [DBG] pgmap v965: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:19.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:19.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:19 smithi046 bash[16275]: audit 2024-02-23T00:58:18.597724+0000 mgr.smithi046.lplrtl (mgr.14184) 1496 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:20.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:19 smithi142 bash[20802]: audit 2024-02-23T00:58:18.597724+0000 mgr.smithi046.lplrtl (mgr.14184) 1496 : audit [DBG] from='client.15798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:20.243 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:20.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:20 smithi046 bash[16275]: cluster 2024-02-23T00:58:18.876235+0000 mgr.smithi046.lplrtl (mgr.14184) 1497 : cluster [DBG] pgmap v966: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:21.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:20 smithi142 bash[20802]: cluster 2024-02-23T00:58:18.876235+0000 mgr.smithi046.lplrtl (mgr.14184) 1497 : cluster [DBG] pgmap v966: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:22.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:22 smithi046 bash[16275]: cluster 2024-02-23T00:58:20.878225+0000 mgr.smithi046.lplrtl (mgr.14184) 1498 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:23.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:22 smithi142 bash[20802]: cluster 2024-02-23T00:58:20.878225+0000 mgr.smithi046.lplrtl (mgr.14184) 1498 : cluster [DBG] pgmap v967: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:23.244 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:23.244 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:23.842 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:24.843 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:24.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:24 smithi046 bash[16275]: cluster 2024-02-23T00:58:22.879981+0000 mgr.smithi046.lplrtl (mgr.14184) 1499 : cluster [DBG] pgmap v968: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:24.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:24 smithi046 bash[16275]: audit 2024-02-23T00:58:23.226416+0000 mgr.smithi046.lplrtl (mgr.14184) 1500 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:25.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:24 smithi142 bash[20802]: cluster 2024-02-23T00:58:22.879981+0000 mgr.smithi046.lplrtl (mgr.14184) 1499 : cluster [DBG] pgmap v968: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:25.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:24 smithi142 bash[20802]: audit 2024-02-23T00:58:23.226416+0000 mgr.smithi046.lplrtl (mgr.14184) 1500 : audit [DBG] from='client.15802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:26.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:26 smithi046 bash[16275]: cluster 2024-02-23T00:58:24.882031+0000 mgr.smithi046.lplrtl (mgr.14184) 1501 : cluster [DBG] pgmap v969: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:27.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:26 smithi142 bash[20802]: cluster 2024-02-23T00:58:24.882031+0000 mgr.smithi046.lplrtl (mgr.14184) 1501 : cluster [DBG] pgmap v969: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:27.952 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:27.953 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:28.548 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:28.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:28 smithi046 bash[16275]: cluster 2024-02-23T00:58:26.883537+0000 mgr.smithi046.lplrtl (mgr.14184) 1502 : cluster [DBG] pgmap v970: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:29.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:28 smithi142 bash[20802]: cluster 2024-02-23T00:58:26.883537+0000 mgr.smithi046.lplrtl (mgr.14184) 1502 : cluster [DBG] pgmap v970: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:29.549 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:29.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:29 smithi046 bash[16275]: audit 2024-02-23T00:58:27.941258+0000 mgr.smithi046.lplrtl (mgr.14184) 1503 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:30.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:29 smithi142 bash[20802]: audit 2024-02-23T00:58:27.941258+0000 mgr.smithi046.lplrtl (mgr.14184) 1503 : audit [DBG] from='client.15806 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:30.886 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:30 smithi046 bash[16275]: cluster 2024-02-23T00:58:28.885134+0000 mgr.smithi046.lplrtl (mgr.14184) 1504 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:31.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:30 smithi142 bash[20802]: cluster 2024-02-23T00:58:28.885134+0000 mgr.smithi046.lplrtl (mgr.14184) 1504 : cluster [DBG] pgmap v971: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:32.607 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:32.607 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:32.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:32 smithi046 bash[16275]: cluster 2024-02-23T00:58:30.887241+0000 mgr.smithi046.lplrtl (mgr.14184) 1505 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:33.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:32 smithi142 bash[20802]: cluster 2024-02-23T00:58:30.887241+0000 mgr.smithi046.lplrtl (mgr.14184) 1505 : cluster [DBG] pgmap v972: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:33.228 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:33.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:33 smithi046 bash[16275]: audit 2024-02-23T00:58:32.587365+0000 mgr.smithi046.lplrtl (mgr.14184) 1506 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:34.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:33 smithi142 bash[20802]: audit 2024-02-23T00:58:32.587365+0000 mgr.smithi046.lplrtl (mgr.14184) 1506 : audit [DBG] from='client.15810 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:34.229 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:34.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:34 smithi046 bash[16275]: cluster 2024-02-23T00:58:32.888954+0000 mgr.smithi046.lplrtl (mgr.14184) 1507 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:35.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:34 smithi142 bash[20802]: cluster 2024-02-23T00:58:32.888954+0000 mgr.smithi046.lplrtl (mgr.14184) 1507 : cluster [DBG] pgmap v973: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:36.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:36 smithi046 bash[16275]: cluster 2024-02-23T00:58:34.890215+0000 mgr.smithi046.lplrtl (mgr.14184) 1508 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:37.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:36 smithi142 bash[20802]: cluster 2024-02-23T00:58:34.890215+0000 mgr.smithi046.lplrtl (mgr.14184) 1508 : cluster [DBG] pgmap v974: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:37.358 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:37.358 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:37.968 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:38.969 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:38.982 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:38 smithi046 bash[16275]: cluster 2024-02-23T00:58:36.891046+0000 mgr.smithi046.lplrtl (mgr.14184) 1509 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:38.982 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:38 smithi046 bash[16275]: audit 2024-02-23T00:58:37.341989+0000 mgr.smithi046.lplrtl (mgr.14184) 1510 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:39.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:38 smithi142 bash[20802]: cluster 2024-02-23T00:58:36.891046+0000 mgr.smithi046.lplrtl (mgr.14184) 1509 : cluster [DBG] pgmap v975: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:39.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:38 smithi142 bash[20802]: audit 2024-02-23T00:58:37.341989+0000 mgr.smithi046.lplrtl (mgr.14184) 1510 : audit [DBG] from='client.15814 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:40.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:40 smithi046 bash[16275]: cluster 2024-02-23T00:58:38.892429+0000 mgr.smithi046.lplrtl (mgr.14184) 1511 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:41.008 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:40 smithi142 bash[20802]: cluster 2024-02-23T00:58:38.892429+0000 mgr.smithi046.lplrtl (mgr.14184) 1511 : cluster [DBG] pgmap v976: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:41.977 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:41.978 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:41.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:41 smithi046 bash[16275]: audit 2024-02-23T00:58:40.845956+0000 mon.smithi046 (mon.0) 1026 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:58:41.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:41 smithi046 bash[16275]: audit 2024-02-23T00:58:41.141894+0000 mon.smithi046 (mon.0) 1027 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:41 smithi142 bash[20802]: audit 2024-02-23T00:58:40.845956+0000 mon.smithi046 (mon.0) 1026 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-23T00:58:42.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:41 smithi142 bash[20802]: audit 2024-02-23T00:58:41.141894+0000 mon.smithi046 (mon.0) 1027 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:42.623 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:42.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:42 smithi046 bash[16275]: cluster 2024-02-23T00:58:40.893725+0000 mgr.smithi046.lplrtl (mgr.14184) 1512 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:43.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:42 smithi142 bash[20802]: cluster 2024-02-23T00:58:40.893725+0000 mgr.smithi046.lplrtl (mgr.14184) 1512 : cluster [DBG] pgmap v977: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-23T00:58:43.624 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:43.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:43 smithi046 bash[16275]: audit 2024-02-23T00:58:41.959658+0000 mgr.smithi046.lplrtl (mgr.14184) 1513 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:44.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:43 smithi142 bash[20802]: audit 2024-02-23T00:58:41.959658+0000 mgr.smithi046.lplrtl (mgr.14184) 1513 : audit [DBG] from='client.15818 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:44.878 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:44 smithi046 bash[16275]: cluster 2024-02-23T00:58:42.895372+0000 mgr.smithi046.lplrtl (mgr.14184) 1514 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:45.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:44 smithi142 bash[20802]: cluster 2024-02-23T00:58:42.895372+0000 mgr.smithi046.lplrtl (mgr.14184) 1514 : cluster [DBG] pgmap v978: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:46.544 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:46.544 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:48:18.897902Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:56:25.824064Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.rndgho on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:48:18.898177Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:48:18.898360Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:48:18.898532Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:48:18.898896Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:48:18.898701Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:48:18.899578Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:46.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:46 smithi046 bash[16275]: cluster 2024-02-23T00:58:44.897573+0000 mgr.smithi046.lplrtl (mgr.14184) 1515 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:46.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:46 smithi046 bash[16275]: audit 2024-02-23T00:58:46.720326+0000 mon.smithi046 (mon.0) 1028 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:47.189 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:47.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:46 smithi142 bash[20802]: cluster 2024-02-23T00:58:44.897573+0000 mgr.smithi046.lplrtl (mgr.14184) 1515 : cluster [DBG] pgmap v979: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:47.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:46 smithi142 bash[20802]: audit 2024-02-23T00:58:46.720326+0000 mon.smithi046 (mon.0) 1028 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:48.190 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:48.201 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:46.532111+0000 mgr.smithi046.lplrtl (mgr.14184) 1516 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:48.202 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:47.015071+0000 mon.smithi046 (mon.0) 1029 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:58:48.202 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:47.017053+0000 mon.smithi046 (mon.0) 1030 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:58:48.202 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:47.026073+0000 mon.smithi046 (mon.0) 1031 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:48.202 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:47.037534+0000 mon.smithi046 (mon.0) 1032 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:58:48.202 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:47 smithi046 bash[16275]: audit 2024-02-23T00:58:47.055301+0000 mon.smithi046 (mon.0) 1033 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:46.532111+0000 mgr.smithi046.lplrtl (mgr.14184) 1516 : audit [DBG] from='client.15822 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:47.015071+0000 mon.smithi046 (mon.0) 1029 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:47.017053+0000 mon.smithi046 (mon.0) 1030 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:47.026073+0000 mon.smithi046 (mon.0) 1031 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:47.037534+0000 mon.smithi046 (mon.0) 1032 : audit [DBG] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-23T00:58:48.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:47 smithi142 bash[20802]: audit 2024-02-23T00:58:47.055301+0000 mon.smithi046 (mon.0) 1033 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:49.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:48 smithi046 bash[16275]: cluster 2024-02-23T00:58:46.899116+0000 mgr.smithi046.lplrtl (mgr.14184) 1517 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:49.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:48 smithi046 bash[16275]: cluster 2024-02-23T00:58:47.027160+0000 mgr.smithi046.lplrtl (mgr.14184) 1518 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:49.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:48 smithi046 bash[16275]: cephadm 2024-02-23T00:58:47.058616+0000 mgr.smithi046.lplrtl (mgr.14184) 1519 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.rchyxd on smithi142 2024-02-23T00:58:49.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:48 smithi046 bash[16275]: cluster 2024-02-23T00:58:47.758370+0000 mon.smithi046 (mon.0) 1034 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:58:49.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:48 smithi046 bash[16275]: cluster 2024-02-23T00:58:47.758439+0000 mon.smithi046 (mon.0) 1035 : cluster [INF] Cluster is now healthy 2024-02-23T00:58:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:48 smithi142 bash[20802]: cluster 2024-02-23T00:58:46.899116+0000 mgr.smithi046.lplrtl (mgr.14184) 1517 : cluster [DBG] pgmap v980: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:58:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:48 smithi142 bash[20802]: cluster 2024-02-23T00:58:47.027160+0000 mgr.smithi046.lplrtl (mgr.14184) 1518 : cluster [DBG] pgmap v981: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:48 smithi142 bash[20802]: cephadm 2024-02-23T00:58:47.058616+0000 mgr.smithi046.lplrtl (mgr.14184) 1519 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi142.rchyxd on smithi142 2024-02-23T00:58:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:48 smithi142 bash[20802]: cluster 2024-02-23T00:58:47.758370+0000 mon.smithi046 (mon.0) 1034 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2024-02-23T00:58:49.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:48 smithi142 bash[20802]: cluster 2024-02-23T00:58:47.758439+0000 mon.smithi046 (mon.0) 1035 : cluster [INF] Cluster is now healthy 2024-02-23T00:58:50.871 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:50 smithi046 bash[16275]: cluster 2024-02-23T00:58:49.028328+0000 mgr.smithi046.lplrtl (mgr.14184) 1520 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:50.871 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:50 smithi046 bash[16275]: audit 2024-02-23T00:58:50.351361+0000 mon.smithi046 (mon.0) 1036 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:51.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:50 smithi142 bash[20802]: cluster 2024-02-23T00:58:49.028328+0000 mgr.smithi046.lplrtl (mgr.14184) 1520 : cluster [DBG] pgmap v982: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:51.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:50 smithi142 bash[20802]: audit 2024-02-23T00:58:50.351361+0000 mon.smithi046 (mon.0) 1036 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:58:51.514 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:51.514 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:57:32.513654Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:57:36.720041Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.kjngpz on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-kjngpz\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.kjngpz\nDeploy daemon haproxy.nfs.foo.smithi142.kjngpz ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.833494Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.zacdcq on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-zacdcq\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.zacdcq\nDeploy daemon haproxy.nfs.foo.smithi046.zacdcq ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:57:40.838066Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.fwqyvy on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:50.868505Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\nDeploy daemon haproxy.nfs.foo.smithi142.rchyxd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:57:32.513430Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:57:32.513232Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:57:32.513866Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:57:32.513970Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:58:46.706209Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:57:32.514390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:51.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:51 smithi046 bash[16275]: audit 2024-02-23T00:58:50.867024+0000 mon.smithi046 (mon.0) 1037 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.rchyxd"}]: dispatch 2024-02-23T00:58:52.114 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:52.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:51 smithi142 bash[20802]: audit 2024-02-23T00:58:50.867024+0000 mon.smithi046 (mon.0) 1037 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi142.rchyxd"}]: dispatch 2024-02-23T00:58:53.114 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: cephadm 2024-02-23T00:58:50.865653+0000 mgr.smithi046.lplrtl (mgr.14184) 1521 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.128 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.129 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: cephadm 2024-02-23T00:58:50.866157+0000 mgr.smithi046.lplrtl (mgr.14184) 1522 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: cephadm 2024-02-23T00:58:50.868770+0000 mgr.smithi046.lplrtl (mgr.14184) 1523 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.130 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: cephadm 2024-02-23T00:58:50.873697+0000 mgr.smithi046.lplrtl (mgr.14184) 1524 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.lfmgfb on smithi046 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: cluster 2024-02-23T00:58:51.029891+0000 mgr.smithi046.lplrtl (mgr.14184) 1525 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:53.131 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:52 smithi046 bash[16275]: audit 2024-02-23T00:58:51.497094+0000 mgr.smithi046.lplrtl (mgr.14184) 1526 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: cephadm 2024-02-23T00:58:50.865653+0000 mgr.smithi046.lplrtl (mgr.14184) 1521 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: cephadm 2024-02-23T00:58:50.866157+0000 mgr.smithi046.lplrtl (mgr.14184) 1522 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: cephadm 2024-02-23T00:58:50.868770+0000 mgr.smithi046.lplrtl (mgr.14184) 1523 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi142.rchyxd ... 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:53.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:53.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:53.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:53.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: cephadm 2024-02-23T00:58:50.873697+0000 mgr.smithi046.lplrtl (mgr.14184) 1524 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi046.lfmgfb on smithi046 2024-02-23T00:58:53.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: cluster 2024-02-23T00:58:51.029891+0000 mgr.smithi046.lplrtl (mgr.14184) 1525 : cluster [DBG] pgmap v983: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:53.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:52 smithi142 bash[20802]: audit 2024-02-23T00:58:51.497094+0000 mgr.smithi046.lplrtl (mgr.14184) 1526 : audit [DBG] from='client.15826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:55.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:54 smithi046 bash[16275]: cluster 2024-02-23T00:58:53.031235+0000 mgr.smithi046.lplrtl (mgr.14184) 1527 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:55.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:54 smithi142 bash[20802]: cluster 2024-02-23T00:58:53.031235+0000 mgr.smithi046.lplrtl (mgr.14184) 1527 : cluster [DBG] pgmap v984: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:56.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:55 smithi046 bash[16275]: audit 2024-02-23T00:58:54.933164+0000 mon.smithi046 (mon.0) 1038 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.lfmgfb"}]: dispatch 2024-02-23T00:58:56.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:55 smithi142 bash[20802]: audit 2024-02-23T00:58:54.933164+0000 mon.smithi046 (mon.0) 1038 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi046.lfmgfb"}]: dispatch 2024-02-23T00:58:56.370 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:58:56.370 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:57:32.513654Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:50.868505Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\nDeploy daemon haproxy.nfs.foo.smithi142.rchyxd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.934403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.lfmgfb on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\nDeploy daemon haproxy.nfs.foo.smithi046.lfmgfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.938783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rcbasr on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:54.941130Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.uiewkn on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:57:32.513430Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:57:32.513232Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:57:32.513866Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:57:32.513970Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:58:46.706209Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:57:32.514390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:58:56.951 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:58:57.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cephadm 2024-02-23T00:58:54.932066+0000 mgr.smithi046.lplrtl (mgr.14184) 1528 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Traceback (most recent call last): 2024-02-23T00:58:57.240 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: yield (conn, connr) 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: code, '\n'.join(err))) 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.241 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cephadm 2024-02-23T00:58:54.932555+0000 mgr.smithi046.lplrtl (mgr.14184) 1529 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cephadm 2024-02-23T00:58:54.934662+0000 mgr.smithi046.lplrtl (mgr.14184) 1530 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.lfmgfb on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stdout 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cephadm 2024-02-23T00:58:54.939027+0000 mgr.smithi046.lplrtl (mgr.14184) 1531 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.rcbasr on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:58:57.242 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cephadm 2024-02-23T00:58:54.941249+0000 mgr.smithi046.lplrtl (mgr.14184) 1532 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.uiewkn on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:58:57.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cluster 2024-02-23T00:58:54.943634+0000 mgr.smithi046.lplrtl (mgr.14184) 1533 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:57.243 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:56 smithi046 bash[16275]: cluster 2024-02-23T00:58:55.805050+0000 mon.smithi046 (mon.0) 1039 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:58:57.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cephadm 2024-02-23T00:58:54.932066+0000 mgr.smithi046.lplrtl (mgr.14184) 1528 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Traceback (most recent call last): 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: yield (conn, connr) 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: code, '\n'.join(err))) 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.261 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cephadm 2024-02-23T00:58:54.932555+0000 mgr.smithi046.lplrtl (mgr.14184) 1529 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cephadm 2024-02-23T00:58:54.934662+0000 mgr.smithi046.lplrtl (mgr.14184) 1530 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi046.lfmgfb on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stdout 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: /usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Deploy daemon haproxy.nfs.foo.smithi046.lfmgfb ... 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr Unable to find image 'haproxy:2.3' locally 2024-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr docker: Error response from daemon: 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-02-23T00:58:57.262 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: stat: stderr See 'docker run --help'. 2024-02-23T00:58:57.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2024-02-23T00:58:57.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cephadm 2024-02-23T00:58:54.939027+0000 mgr.smithi046.lplrtl (mgr.14184) 1531 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi046.rcbasr on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:58:57.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cephadm 2024-02-23T00:58:54.941249+0000 mgr.smithi046.lplrtl (mgr.14184) 1532 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi142.uiewkn on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2024-02-23T00:58:57.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cluster 2024-02-23T00:58:54.943634+0000 mgr.smithi046.lplrtl (mgr.14184) 1533 : cluster [DBG] pgmap v985: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:57.263 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:56 smithi142 bash[20802]: cluster 2024-02-23T00:58:55.805050+0000 mon.smithi046 (mon.0) 1039 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T00:58:57.952 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:58:58.239 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:57 smithi046 bash[16275]: audit 2024-02-23T00:58:56.357462+0000 mgr.smithi046.lplrtl (mgr.14184) 1534 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:58.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:57 smithi142 bash[20802]: audit 2024-02-23T00:58:56.357462+0000 mgr.smithi046.lplrtl (mgr.14184) 1534 : audit [DBG] from='client.15830 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:58:59.100 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:58:58 smithi046 bash[16275]: cluster 2024-02-23T00:58:56.945155+0000 mgr.smithi046.lplrtl (mgr.14184) 1535 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:58:59.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:58:58 smithi142 bash[20802]: cluster 2024-02-23T00:58:56.945155+0000 mgr.smithi046.lplrtl (mgr.14184) 1535 : cluster [DBG] pgmap v986: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2024-02-23T00:59:00.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:00 smithi142 bash[20802]: cluster 2024-02-23T00:58:58.946672+0000 mgr.smithi046.lplrtl (mgr.14184) 1536 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:00.858 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:00 smithi142 bash[20802]: audit 2024-02-23T00:58:59.571520+0000 mon.smithi046 (mon.0) 1040 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:59:00.968 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:59:00.968 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:57:32.513654Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:50.868505Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\nDeploy daemon haproxy.nfs.foo.smithi142.rchyxd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.934403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.lfmgfb on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\nDeploy daemon haproxy.nfs.foo.smithi046.lfmgfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.938783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rcbasr on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:54.941130Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.uiewkn on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:57:32.513430Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:57:32.513232Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:57:32.513866Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:57:32.513970Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:58:46.706209Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:57:32.514390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:59:00.988 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:00 smithi046 bash[16275]: cluster 2024-02-23T00:58:58.946672+0000 mgr.smithi046.lplrtl (mgr.14184) 1536 : cluster [DBG] pgmap v987: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:00.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:00 smithi046 bash[16275]: audit 2024-02-23T00:58:59.571520+0000 mon.smithi046 (mon.0) 1040 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:59:01.603 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:59:02.603 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:eb66ed921e744301e6863be6353618d63967ea59 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 -- ceph orch ls -f json 2024-02-23T00:59:02.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:02 smithi046 bash[16275]: cluster 2024-02-23T00:59:00.948456+0000 mgr.smithi046.lplrtl (mgr.14184) 1537 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2024-02-23T00:59:02.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:02 smithi046 bash[16275]: audit 2024-02-23T00:59:00.950673+0000 mgr.smithi046.lplrtl (mgr.14184) 1538 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:59:03.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:02 smithi142 bash[20802]: cluster 2024-02-23T00:59:00.948456+0000 mgr.smithi046.lplrtl (mgr.14184) 1537 : cluster [DBG] pgmap v988: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 171 B/s rd, 0 op/s 2024-02-23T00:59:03.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:02 smithi142 bash[20802]: audit 2024-02-23T00:59:00.950673+0000 mgr.smithi046.lplrtl (mgr.14184) 1538 : audit [DBG] from='client.15834 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:59:04.989 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:04 smithi046 bash[16275]: cluster 2024-02-23T00:59:02.950077+0000 mgr.smithi046.lplrtl (mgr.14184) 1539 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:05.009 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:04 smithi142 bash[20802]: cluster 2024-02-23T00:59:02.950077+0000 mgr.smithi046.lplrtl (mgr.14184) 1539 : cluster [DBG] pgmap v989: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:05.682 INFO:teuthology.orchestra.run.smithi046.stdout: 2024-02-23T00:59:05.682 INFO:teuthology.orchestra.run.smithi046.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-23T00:27:22.244685Z", "last_refresh": "2024-02-23T00:57:32.513545Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-23T00:27:14.280146Z", "last_refresh": "2024-02-23T00:57:32.513654Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-23T00:27:18.433978Z", "last_refresh": "2024-02-23T00:57:32.513761Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:57:40.842232Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.udcpqb on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:50.868505Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi142.rchyxd on smithi142: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi142-rchyxd\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi142.rchyxd\nDeploy daemon haproxy.nfs.foo.smithi142.rchyxd ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi142 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.934403Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi046.lfmgfb on smithi046: cephadm exited with an error code: 1, stderr:Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy-nfs-foo-smithi046-lfmgfb\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-haproxy.nfs.foo.smithi046.lfmgfb\nDeploy daemon haproxy.nfs.foo.smithi046.lfmgfb ...\nNon-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Unable to find image 'haproxy:2.3' locally\nstat: stderr docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.\nstat: stderr See 'docker run --help'.\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi046 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2024-02-23T00:58:54.938783Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi046.rcbasr on smithi046: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2024-02-23T00:58:54.941130Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi142.uiewkn on smithi142: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.46/16"}, "status": {"created": "2024-02-23T00:34:34.298655Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.46/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-23T00:27:12.259519Z", "last_refresh": "2024-02-23T00:57:32.513430Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:28:36.096009Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi046:172.21.15.46=smithi046", "smithi142:172.21.15.142=smithi142"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-23T00:28:36.091014Z", "last_refresh": "2024-02-23T00:57:32.513232Z", "running": 2, "size": 2}}, {"events": ["2024-02-23T00:34:34.296908Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-23T00:34:34.292699Z", "last_refresh": "2024-02-23T00:57:32.514497Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-23T00:27:20.277472Z", "last_refresh": "2024-02-23T00:57:32.513866Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-23T00:29:13.776251Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-23T00:29:13.769370Z", "last_refresh": "2024-02-23T00:57:32.513970Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-23T00:27:16.347373Z", "last_refresh": "2024-02-23T00:58:46.706209Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-23T00:34:28.915846Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-23T00:34:42.756029Z", "last_refresh": "2024-02-23T00:57:32.514390Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-23T00:59:06.260 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2024-02-23T00:59:06.260 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/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_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-02-23T00:59:06.511 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=b140b3c3dd6548abbfc0d453a3de413a Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/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_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_kamoltat_ceph_4f758cd8e8854d1f126da86e254076852bf059a9/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_b1dac5519c57c269ea98a22fb7729016a1d0e4d2/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2024-02-23T00:59:06.512 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-23T00:59:06.522 INFO:tasks.vip:Removing 10.0.15.46 (and any VIPs) on smithi046.front.sepia.ceph.com iface ens1f0... 2024-02-23T00:59:06.522 DEBUG:teuthology.orchestra.run.smithi046:> sudo ip addr del 10.0.15.46/16 dev ens1f0 2024-02-23T00:59:06.536 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[16275]: cluster 2024-02-23T00:59:04.952137+0000 mgr.smithi046.lplrtl (mgr.14184) 1540 : cluster [DBG] pgmap v990: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:06.536 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[16275]: audit 2024-02-23T00:59:05.351422+0000 mon.smithi046 (mon.0) 1041 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:59:06.537 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[16275]: audit 2024-02-23T00:59:05.664903+0000 mgr.smithi046.lplrtl (mgr.14184) 1541 : audit [DBG] from='client.15838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:59:06.538 DEBUG:teuthology.orchestra.run.smithi046:> sudo ip addr del 10.0.31.46/16 dev ens1f0 2024-02-23T00:59:06.593 INFO:teuthology.orchestra.run.smithi046.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-23T00:59:06.594 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-23T00:59:06.595 INFO:tasks.vip:Removing 10.0.15.142 (and any VIPs) on smithi142.front.sepia.ceph.com iface enp3s0f1... 2024-02-23T00:59:06.595 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr del 10.0.15.142/16 dev enp3s0f1 2024-02-23T00:59:06.608 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:06 smithi142 bash[20802]: cluster 2024-02-23T00:59:04.952137+0000 mgr.smithi046.lplrtl (mgr.14184) 1540 : cluster [DBG] pgmap v990: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-23T00:59:06.608 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:06 smithi142 bash[20802]: audit 2024-02-23T00:59:05.351422+0000 mon.smithi046 (mon.0) 1041 : audit [INF] from='mgr.14184 172.21.15.46:0/1694731195' entity='mgr.smithi046.lplrtl' 2024-02-23T00:59:06.608 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:06 smithi142 bash[20802]: audit 2024-02-23T00:59:05.664903+0000 mgr.smithi046.lplrtl (mgr.14184) 1541 : audit [DBG] from='client.15838 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-23T00:59:06.613 DEBUG:teuthology.orchestra.run.smithi142:> sudo ip addr del 10.0.31.46/16 dev enp3s0f1 2024-02-23T00:59:06.668 INFO:teuthology.orchestra.run.smithi142.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-23T00:59:06.669 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-23T00:59:06.670 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-23T00:59:06.682 INFO:tasks.cephadm:Teardown begin 2024-02-23T00:59:06.682 DEBUG:teuthology.orchestra.run.smithi046:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-23T00:59:06.698 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-23T00:59:06.725 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-23T00:59:06.725 DEBUG:teuthology.orchestra.run.smithi046:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-23T00:59:06.745 DEBUG:teuthology.orchestra.run.smithi142:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-23T00:59:06.776 INFO:tasks.cephadm:Stopping all daemons... 2024-02-23T00:59:06.776 INFO:tasks.cephadm.mon.smithi046:Stopping mon.smithi046... 2024-02-23T00:59:06.776 DEBUG:teuthology.orchestra.run.smithi046:> sudo systemctl stop ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046 2024-02-23T00:59:07.120 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 systemd[1]: Stopping Ceph mon.smithi046 for 1abddab2-d1e2-11ee-95c0-87774f69a715... 2024-02-23T00:59:07.121 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[111073]: Error response from daemon: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-mon.smithi046 2024-02-23T00:59:07.121 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[16275]: debug 2024-02-23T00:59:06.978+0000 7f33fb174700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi046 -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-02-23T00:59:07.121 INFO:journalctl@ceph.mon.smithi046.smithi046.stdout:Feb 23 00:59:06 smithi046 bash[16275]: debug 2024-02-23T00:59:06.978+0000 7f33fb174700 -1 mon.smithi046@0(leader) e2 *** Got Signal Terminated *** 2024-02-23T00:59:07.987 DEBUG:teuthology.orchestra.run.smithi046:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi046.service' 2024-02-23T00:59:08.025 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-23T00:59:08.025 INFO:tasks.cephadm.mon.smithi046:Stopped mon.smithi046 2024-02-23T00:59:08.025 INFO:tasks.cephadm.mon.smithi142:Stopping mon.smithi142... 2024-02-23T00:59:08.026 DEBUG:teuthology.orchestra.run.smithi142:> sudo systemctl stop ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi142 2024-02-23T00:59:08.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:08 smithi142 systemd[1]: Stopping Ceph mon.smithi142 for 1abddab2-d1e2-11ee-95c0-87774f69a715... 2024-02-23T00:59:08.259 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:08 smithi142 bash[46599]: Error response from daemon: No such container: ceph-1abddab2-d1e2-11ee-95c0-87774f69a715-mon.smithi142 2024-02-23T00:59:08.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:08 smithi142 bash[20802]: debug 2024-02-23T00:59:08.206+0000 7f44c17da700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi142 -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-02-23T00:59:08.260 INFO:journalctl@ceph.mon.smithi142.smithi142.stdout:Feb 23 00:59:08 smithi142 bash[20802]: debug 2024-02-23T00:59:08.206+0000 7f44c17da700 -1 mon.smithi142@1(peon) e2 *** Got Signal Terminated *** 2024-02-23T00:59:09.027 DEBUG:teuthology.orchestra.run.smithi142:> sudo pkill -f 'journalctl -f -n 0 -u ceph-1abddab2-d1e2-11ee-95c0-87774f69a715@mon.smithi142.service' 2024-02-23T00:59:09.060 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-23T00:59:09.060 INFO:tasks.cephadm.mon.smithi142:Stopped mon.smithi142 2024-02-23T00:59:09.060 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 --force --keep-logs 2024-02-23T01:00:12.856 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 --force --keep-logs 2024-02-23T01:01:05.948 DEBUG:teuthology.orchestra.run.smithi046:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-23T01:01:05.963 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-23T01:01:05.976 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-23T01:01:05.978 DEBUG:teuthology.misc:Transferring archived files from smithi046:/var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/ubuntu@smithi046.front.sepia.ceph.com/crash 2024-02-23T01:01:05.979 DEBUG:teuthology.orchestra.run.smithi046:> sudo tar c -f - -C /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash -- . 2024-02-23T01:01:06.021 INFO:teuthology.orchestra.run.smithi046.stderr:tar: /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash: Cannot open: No such file or directory 2024-02-23T01:01:06.021 INFO:teuthology.orchestra.run.smithi046.stderr:tar: Error is not recoverable: exiting now 2024-02-23T01:01:06.023 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/ubuntu@smithi142.front.sepia.ceph.com/crash 2024-02-23T01:01:06.024 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash -- . 2024-02-23T01:01:06.035 INFO:teuthology.orchestra.run.smithi142.stderr:tar: /var/lib/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/crash: Cannot open: No such file or directory 2024-02-23T01:01:06.035 INFO:teuthology.orchestra.run.smithi142.stderr:tar: Error is not recoverable: exiting now 2024-02-23T01:01:06.037 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-23T01:01:06.037 DEBUG:teuthology.orchestra.run.smithi046:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-23T01:01:06.078 INFO:teuthology.orchestra.run.smithi046.stdout:2024-02-23T00:35:01.968928+0000 mon.smithi046 (mon.0) 677 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-02-23T01:01:06.081 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-02-23T01:01:06.081 INFO:tasks.cephadm:Compressing logs... 2024-02-23T01:01:06.081 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T01:01:06.125 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T01:01:06.137 INFO:teuthology.orchestra.run.smithi046.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-23T01:01:06.137 INFO:teuthology.orchestra.run.smithi046.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-23T01:01:06.138 INFO:teuthology.orchestra.run.smithi046.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log 2024-02-23T01:01:06.138 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi046.rywsyx.log 2024-02-23T01:01:06.139 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log 2024-02-23T01:01:06.140 INFO:teuthology.orchestra.run.smithi142.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-23T01:01:06.140 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-23T01:01:06.141 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.6.log 2024-02-23T01:01:06.141 INFO:teuthology.orchestra.run.smithi046.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.7.log 2024-02-23T01:01:06.142 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi046.rywsyx.log: /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.1.log 2024-02-23T01:01:06.142 INFO:teuthology.orchestra.run.smithi046.stderr: 78.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi046.rywsyx.log.gz 2024-02-23T01:01:06.142 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.5.log 2024-02-23T01:01:06.143 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log 2024-02-23T01:01:06.143 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.0.log 2024-02-23T01:01:06.143 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi142.hrzezs.log 2024-02-23T01:01:06.146 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.1.log: 96.3% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log.gz 2024-02-23T01:01:06.146 INFO:teuthology.orchestra.run.smithi046.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log 2024-02-23T01:01:06.146 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi046.lplrtl.log 2024-02-23T01:01:06.146 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi046.log 2024-02-23T01:01:06.147 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log 2024-02-23T01:01:06.147 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi142.zsaevf.log 2024-02-23T01:01:06.148 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi142.hrzezs.log: /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log 2024-02-23T01:01:06.148 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi142.zsaevf.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.2.log 2024-02-23T01:01:06.148 INFO:teuthology.orchestra.run.smithi142.stderr: 78.4% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-client.rgw.foorgw.smithi142.zsaevf.log.gz 2024-02-23T01:01:06.148 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.4.log 2024-02-23T01:01:06.150 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.2.log: 96.5% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.cephadm.log.gz 2024-02-23T01:01:06.150 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi142.log 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi142.stderr: 91.8% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log.gz/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.4.log: 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi142.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi046.lplrtl.log: gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.3.log 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi046.log: 91.5% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.audit.log.gz 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi046.stderr:gzip -5 --verbose -- /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log 2024-02-23T01:01:06.151 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.3.log: 92.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log.gz 2024-02-23T01:01:06.152 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi142.log: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-23T01:01:06.154 INFO:teuthology.orchestra.run.smithi046.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log: 90.4% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log.gz 2024-02-23T01:01:06.155 INFO:teuthology.orchestra.run.smithi142.stderr:/var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log: 92.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-volume.log.gz 2024-02-23T01:01:06.156 INFO:teuthology.orchestra.run.smithi142.stderr: 90.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph.log.gz 2024-02-23T01:01:06.156 INFO:teuthology.orchestra.run.smithi142.stderr: 93.5% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi142.hrzezs.log.gz 2024-02-23T01:01:06.161 INFO:teuthology.orchestra.run.smithi046.stderr: 93.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-23T01:01:06.420 INFO:teuthology.orchestra.run.smithi142.stderr: 92.8% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi142.log.gz 2024-02-23T01:01:06.564 INFO:teuthology.orchestra.run.smithi046.stderr: 89.3% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mgr.smithi046.lplrtl.log.gz 2024-02-23T01:01:07.016 INFO:teuthology.orchestra.run.smithi046.stderr: 90.3% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-mon.smithi046.log.gz 2024-02-23T01:01:07.201 INFO:teuthology.orchestra.run.smithi046.stderr: 93.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.5.log.gz 2024-02-23T01:01:07.276 INFO:teuthology.orchestra.run.smithi142.stderr: 93.4% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.6.log.gz 2024-02-23T01:01:07.353 INFO:teuthology.orchestra.run.smithi142.stderr: 93.5% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.2.log.gz 2024-02-23T01:01:07.362 INFO:teuthology.orchestra.run.smithi046.stderr: 93.5% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.1.log.gz 2024-02-23T01:01:07.368 INFO:teuthology.orchestra.run.smithi142.stderr: 93.7% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.4.log.gz 2024-02-23T01:01:07.395 INFO:teuthology.orchestra.run.smithi046.stderr: 93.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.7.log.gz 2024-02-23T01:01:07.425 INFO:teuthology.orchestra.run.smithi142.stderr: 93.7% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.0.log.gz 2024-02-23T01:01:07.426 INFO:teuthology.orchestra.run.smithi142.stderr: 2024-02-23T01:01:07.426 INFO:teuthology.orchestra.run.smithi142.stderr:real 0m1.297s 2024-02-23T01:01:07.427 INFO:teuthology.orchestra.run.smithi142.stderr:user 0m4.935s 2024-02-23T01:01:07.427 INFO:teuthology.orchestra.run.smithi142.stderr:sys 0m0.260s 2024-02-23T01:01:07.823 INFO:teuthology.orchestra.run.smithi046.stderr: 93.6% -- replaced with /var/log/ceph/1abddab2-d1e2-11ee-95c0-87774f69a715/ceph-osd.3.log.gz 2024-02-23T01:01:07.825 INFO:teuthology.orchestra.run.smithi046.stderr: 2024-02-23T01:01:07.825 INFO:teuthology.orchestra.run.smithi046.stderr:real 0m1.694s 2024-02-23T01:01:07.825 INFO:teuthology.orchestra.run.smithi046.stderr:user 0m6.341s 2024-02-23T01:01:07.825 INFO:teuthology.orchestra.run.smithi046.stderr:sys 0m0.219s 2024-02-23T01:01:07.825 INFO:tasks.cephadm:Archiving logs... 2024-02-23T01:01:07.826 DEBUG:teuthology.misc:Transferring archived files from smithi046:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/ubuntu@smithi046.front.sepia.ceph.com/log 2024-02-23T01:01:07.827 DEBUG:teuthology.orchestra.run.smithi046:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-23T01:01:08.767 DEBUG:teuthology.misc:Transferring archived files from smithi142:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/ubuntu@smithi142.front.sepia.ceph.com/log 2024-02-23T01:01:08.768 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-23T01:01:09.527 INFO:tasks.cephadm:Removing cluster... 2024-02-23T01:01:09.527 DEBUG:teuthology.orchestra.run.smithi046:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 --force 2024-02-23T01:01:10.915 DEBUG:teuthology.orchestra.run.smithi142:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 1abddab2-d1e2-11ee-95c0-87774f69a715 --force 2024-02-23T01:01:12.308 INFO:tasks.cephadm:Removing cephadm ... 2024-02-23T01:01:12.309 DEBUG:teuthology.orchestra.run.smithi046:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-23T01:01:12.315 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-23T01:01:12.320 INFO:tasks.cephadm:Teardown complete 2024-02-23T01:01:12.320 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-23T01:01:12.331 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi046:/dev/vg_nvme/lv_1... 2024-02-23T01:01:12.331 DEBUG:teuthology.orchestra.run.smithi046:> sudo nvme disconnect -n lv_1 2024-02-23T01:01:12.659 INFO:teuthology.orchestra.run.smithi046.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-23T01:01:12.660 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:12.661 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi046:/dev/vg_nvme/lv_2... 2024-02-23T01:01:12.662 DEBUG:teuthology.orchestra.run.smithi046:> sudo nvme disconnect -n lv_2 2024-02-23T01:01:12.935 INFO:teuthology.orchestra.run.smithi046.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-23T01:01:12.936 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:12.937 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi046:/dev/vg_nvme/lv_3... 2024-02-23T01:01:12.937 DEBUG:teuthology.orchestra.run.smithi046:> sudo nvme disconnect -n lv_3 2024-02-23T01:01:13.215 INFO:teuthology.orchestra.run.smithi046.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-23T01:01:13.216 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:13.217 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi046:/dev/vg_nvme/lv_4... 2024-02-23T01:01:13.217 DEBUG:teuthology.orchestra.run.smithi046:> sudo nvme disconnect -n lv_4 2024-02-23T01:01:13.499 INFO:teuthology.orchestra.run.smithi046.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-23T01:01:13.500 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:13.501 DEBUG:teuthology.orchestra.run.smithi046:> set -ex 2024-02-23T01:01:13.501 DEBUG:teuthology.orchestra.run.smithi046:> sudo dd of=/scratch_devs 2024-02-23T01:01:13.515 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_1... 2024-02-23T01:01:13.516 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_1 2024-02-23T01:01:13.811 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-23T01:01:13.812 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:13.813 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_2... 2024-02-23T01:01:13.813 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_2 2024-02-23T01:01:14.107 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-23T01:01:14.108 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:14.109 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_3... 2024-02-23T01:01:14.109 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_3 2024-02-23T01:01:14.379 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-23T01:01:14.380 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:14.381 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi142:/dev/vg_nvme/lv_4... 2024-02-23T01:01:14.381 DEBUG:teuthology.orchestra.run.smithi142:> sudo nvme disconnect -n lv_4 2024-02-23T01:01:14.671 INFO:teuthology.orchestra.run.smithi142.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-23T01:01:14.672 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:14.673 DEBUG:teuthology.orchestra.run.smithi142:> set -ex 2024-02-23T01:01:14.673 DEBUG:teuthology.orchestra.run.smithi142:> sudo dd of=/scratch_devs 2024-02-23T01:01:14.688 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-23T01:01:14.698 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-23T01:01:14.699 DEBUG:teuthology.orchestra.run.smithi046:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-23T01:01:14.701 DEBUG:teuthology.orchestra.run.smithi142:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-23T01:01:14.721 INFO:teuthology.orchestra.run.smithi046.stdout: remote refid st t when poll reach delay offset jitter 2024-02-23T01:01:14.721 INFO:teuthology.orchestra.run.smithi046.stdout:============================================================================== 2024-02-23T01:01:14.721 INFO:teuthology.orchestra.run.smithi046.stdout:*hv01.front.sepi 44.4.53.2 2 u 20 64 377 0.082 1.750 1.548 2024-02-23T01:01:14.722 INFO:teuthology.orchestra.run.smithi046.stdout:+hv02.front.sepi 63.231.80.2 3 u 23 64 377 0.068 4.188 1.904 2024-02-23T01:01:14.722 INFO:teuthology.orchestra.run.smithi046.stdout:+hv03.front.sepi 74.6.168.72 3 u 24 64 377 0.097 4.271 1.573 2024-02-23T01:01:14.722 INFO:teuthology.orchestra.run.smithi046.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-23T01:01:14.749 INFO:teuthology.orchestra.run.smithi142.stdout: remote refid st t when poll reach delay offset jitter 2024-02-23T01:01:14.749 INFO:teuthology.orchestra.run.smithi142.stdout:============================================================================== 2024-02-23T01:01:14.749 INFO:teuthology.orchestra.run.smithi142.stdout:*hv01.front.sepi 44.4.53.2 2 u 81 128 377 0.081 -1.291 0.381 2024-02-23T01:01:14.749 INFO:teuthology.orchestra.run.smithi142.stdout:+hv02.front.sepi 63.231.80.2 3 u 77 128 377 0.095 1.831 0.271 2024-02-23T01:01:14.750 INFO:teuthology.orchestra.run.smithi142.stdout:+hv03.front.sepi 74.6.168.72 3 u 25 128 377 0.106 1.847 0.390 2024-02-23T01:01:14.750 INFO:teuthology.orchestra.run.smithi142.stdout: hv04.front.sepi .INIT. 16 u - 1024 0 0.000 0.000 0.000 2024-02-23T01:01:14.751 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-23T01:01:14.761 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-23T01:01:14.762 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-23T01:01:14.773 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-23T01:01:14.785 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-23T01:01:14.797 INFO:teuthology.task.internal:Duration was 2456.796188 seconds 2024-02-23T01:01:14.798 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-23T01:01:14.809 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-23T01:01:14.809 DEBUG:teuthology.orchestra.run.smithi046:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-23T01:01:14.811 DEBUG:teuthology.orchestra.run.smithi142:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-23T01:01:14.861 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-23T01:01:14.862 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi046.front.sepia.ceph.com 2024-02-23T01:01:14.862 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T01:01:14.874 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi142.front.sepia.ceph.com 2024-02-23T01:01:14.874 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T01:01:14.886 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-23T01:01:14.886 DEBUG:teuthology.orchestra.run.smithi046:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-23T01:01:14.916 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-23T01:01:14.991 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-23T01:01:14.992 DEBUG:teuthology.orchestra.run.smithi046:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-23T01:01:14.994 DEBUG:teuthology.orchestra.run.smithi142:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-23T01:01:15.141 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-23T01:01:15.153 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-23T01:01:15.153 DEBUG:teuthology.orchestra.run.smithi046:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-23T01:01:15.169 DEBUG:teuthology.orchestra.run.smithi142:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-23T01:01:15.182 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-23T01:01:15.194 DEBUG:teuthology.orchestra.run.smithi046:> 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-02-23T01:01:15.212 DEBUG:teuthology.orchestra.run.smithi142:> 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-02-23T01:01:15.224 INFO:teuthology.orchestra.run.smithi046.stdout:kernel.core_pattern = core 2024-02-23T01:01:15.236 INFO:teuthology.orchestra.run.smithi142.stdout:kernel.core_pattern = core 2024-02-23T01:01:15.268 DEBUG:teuthology.orchestra.run.smithi046:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-23T01:01:15.295 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:15.296 DEBUG:teuthology.orchestra.run.smithi142:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-23T01:01:15.315 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-23T01:01:15.316 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-23T01:01:15.328 INFO:teuthology.task.internal:Transferring archived files... 2024-02-23T01:01:15.328 DEBUG:teuthology.misc:Transferring archived files from smithi046:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/smithi046 2024-02-23T01:01:15.329 DEBUG:teuthology.orchestra.run.smithi046:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-23T01:01:15.374 DEBUG:teuthology.misc:Transferring archived files from smithi142:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416/remote/smithi142 2024-02-23T01:01:15.375 DEBUG:teuthology.orchestra.run.smithi142:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-23T01:01:15.402 INFO:teuthology.task.internal:Removing archive directory... 2024-02-23T01:01:15.403 DEBUG:teuthology.orchestra.run.smithi046:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-23T01:01:15.409 DEBUG:teuthology.orchestra.run.smithi142:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-23T01:01:15.445 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-23T01:01:15.458 INFO:teuthology.task.internal:Not uploading archives. 2024-02-23T01:01:15.458 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-23T01:01:15.470 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-23T01:01:15.471 DEBUG:teuthology.orchestra.run.smithi046:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-23T01:01:15.473 DEBUG:teuthology.orchestra.run.smithi142:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-23T01:01:15.478 INFO:teuthology.orchestra.run.smithi046.stdout: 659552 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 01:01 /home/ubuntu/cephtest 2024-02-23T01:01:15.493 INFO:teuthology.orchestra.run.smithi142.stdout: 659550 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 23 01:01 /home/ubuntu/cephtest 2024-02-23T01:01:15.496 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-23T01:01:15.508 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-23T01:01:15.534 INFO:teuthology.nuke:Checking targets against current locks 2024-02-23T01:01:15.561 DEBUG:teuthology.nuke:shortname: smithi046 2024-02-23T01:01:15.562 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-23T01:01:15.585 DEBUG:teuthology.nuke:shortname: smithi142 2024-02-23T01:01:15.586 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-23T01:01:15.589 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi046.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-23 00:11:12.903550', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-02-23T01:01:15.613 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi142.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-22_21:39:39-rados-pacific-release-distro-default-smithi/7571416', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-23 00:11:12.901892', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-02-23T01:01:15.642 INFO:teuthology.orchestra.console.smithi046:Power off 2024-02-23T01:01:15.642 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-23T01:01:15.666 DEBUG:teuthology.orchestra.console.smithi046:power off output: Chassis Power Control: Down/Off 2024-02-23T01:01:15.666 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:15.682 INFO:teuthology.orchestra.console.smithi142:Power off 2024-02-23T01:01:15.682 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-23T01:01:15.692 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is on 2024-02-23T01:01:15.705 DEBUG:teuthology.orchestra.console.smithi142:power off output: Chassis Power Control: Down/Off 2024-02-23T01:01:15.705 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:15.729 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-02-23T01:01:19.694 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:19.730 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:19.806 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is on 2024-02-23T01:01:19.840 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-02-23T01:01:23.810 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:23.841 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:23.920 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is on 2024-02-23T01:01:23.950 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is on 2024-02-23T01:01:27.924 DEBUG:teuthology.orchestra.console.smithi046:pexpect command: ipmitool -H smithi046.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:27.951 DEBUG:teuthology.orchestra.console.smithi142:pexpect command: ipmitool -H smithi142.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-23T01:01:28.034 DEBUG:teuthology.orchestra.console.smithi046:check power output: Chassis Power is off 2024-02-23T01:01:28.060 DEBUG:teuthology.orchestra.console.smithi142:check power output: Chassis Power is off 2024-02-23T01:01:28.136 INFO:teuthology.orchestra.console.smithi046:Power off completed 2024-02-23T01:01:28.161 INFO:teuthology.orchestra.console.smithi142:Power off completed 2024-02-23T01:01:28.266 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 2456.7961881160736 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=b140b3c3dd6548abbfc0d453a3de413a status: fail success: false 2024-02-23T01:01:28.266 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-23T01:01:28.348 INFO:teuthology.run:FAIL